結果
問題 | No.740 幻の木 |
ユーザー | letrangerjp |
提出日時 | 2018-10-05 21:36:37 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 158 bytes |
コンパイル時間 | 110 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-10-12 12:55:44 |
合計ジャッジ時間 | 1,706 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
N, M, P, Q = gets.split.map &:to_i leaf = N ans = 0 while leaf > 0 ans += 1 mon = (ans - 1) % 12 + 1 leaf -= mon.between?(P, P + Q - 1) ? 2 * M : M end