Submission #215418


Source Code Expand

lost = 2025 - gets.to_i
(1..9).each { |row|
  col = lost / row
  if 1 <= col and col <= 9 and row * col == lost
    puts "#{row} x #{col}"
  end
}

Submission Info

Submission Time
Task C - 九九足し算
User hamadu
Language Ruby (1.9.3)
Score 100
Code Size 154 Byte
Status AC
Exec Time 62 ms
Memory 4248 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 18
Set Name Test Cases
All test_1953.txt, test_1971.txt, test_1977.txt, test_1983.txt, test_1989.txt, test_1990.txt, test_1993.txt, test_1995.txt, test_1997.txt, test_1998.txt, test_2001.txt, test_2009.txt, test_2013.txt, test_2017.txt, test_2019.txt, test_2020.txt, test_2022.txt, test_2024.txt
Case Name Status Exec Time Memory
sample_01.txt AC 55 ms 4204 KB
sample_02.txt AC 54 ms 4208 KB
test_1953.txt AC 53 ms 4212 KB
test_1971.txt AC 55 ms 4208 KB
test_1977.txt AC 54 ms 4208 KB
test_1983.txt AC 56 ms 4208 KB
test_1989.txt AC 54 ms 4208 KB
test_1990.txt AC 55 ms 4208 KB
test_1993.txt AC 55 ms 4204 KB
test_1995.txt AC 55 ms 4212 KB
test_1997.txt AC 52 ms 4208 KB
test_1998.txt AC 52 ms 4208 KB
test_2001.txt AC 55 ms 4212 KB
test_2009.txt AC 53 ms 4212 KB
test_2013.txt AC 54 ms 4248 KB
test_2017.txt AC 62 ms 4188 KB
test_2019.txt AC 55 ms 4208 KB
test_2020.txt AC 54 ms 4208 KB
test_2022.txt AC 56 ms 4212 KB
test_2024.txt AC 54 ms 4208 KB