結果
問題 | No.740 幻の木 |
ユーザー | manhattaner |
提出日時 | 2018-11-02 19:18:04 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 273 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-04-30 17:22:15 |
合計ジャッジ時間 | 1,666 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
12,032 KB |
testcase_01 | AC | 85 ms
12,160 KB |
testcase_02 | AC | 87 ms
12,160 KB |
testcase_03 | AC | 87 ms
12,288 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 86 ms
12,160 KB |
testcase_07 | WA | - |
testcase_08 | AC | 86 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
N,M,P,Q = gets.split.map(&:to_i) Year = 12*M + Q*M n = N / Year remain = N % Year drop = 0 r = 0 for i in 1..11 do drop += M if P <= i && i <= (P+Q - 1) then drop += M end if drop > remain then break end r += 1 end puts n*12 + r