結果
問題 | No.296 n度寝 |
ユーザー | Hirotaka Hanada |
提出日時 | 2016-01-27 21:26:46 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 215 bytes |
コンパイル時間 | 58 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-09-21 17:40:47 |
合計ジャッジ時間 | 2,951 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 88 ms
12,160 KB |
testcase_04 | AC | 87 ms
12,160 KB |
testcase_05 | AC | 87 ms
12,032 KB |
testcase_06 | AC | 87 ms
12,288 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 88 ms
12,160 KB |
testcase_11 | AC | 88 ms
12,160 KB |
testcase_12 | WA | - |
testcase_13 | AC | 91 ms
12,288 KB |
testcase_14 | AC | 92 ms
12,288 KB |
testcase_15 | WA | - |
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - i Syntax OK
ソースコード
def getTime(n, h, m, t) for i in 1..n-1 m = m + t if m > 59 then h = h + 1 m = m % 60 end end puts h puts m end N,H,M,T = gets.split(" ") getTime(N.to_i, H.to_i, M.to_i, T.to_i)