結果

問題 No.296 n度寝
ユーザー jiro8719jiro8719
提出日時 2018-07-10 12:53:12
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-20 05:23:25
合計ジャッジ時間 2,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 82 ms
12,288 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 86 ms
12,032 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 75 ms
12,032 KB
testcase_11 AC 76 ms
12,160 KB
testcase_12 WA -
testcase_13 AC 78 ms
12,032 KB
testcase_14 AC 81 ms
12,032 KB
testcase_15 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

input = gets.split(" ").map{|i| i.to_i}
case input[0]
when 1
    puts input[1]
    puts input[2]
else
    a = input[3] * (input[0] - 1)
    b = input[2] + a
    c = input[1] + b / 60
    d = b % 60
    puts c
    puts d
end
0