結果

問題 No.740 幻の木
ユーザー nebukuro09nebukuro09
提出日時 2018-10-05 21:24:11
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 1,783 ms
コンパイル使用メモリ 76,300 KB
実行使用メモリ 77,708 KB
最終ジャッジ日時 2024-10-12 12:47:57
合計ジャッジ時間 3,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,528 KB
testcase_01 AC 76 ms
75,536 KB
testcase_02 AC 77 ms
75,168 KB
testcase_03 AC 76 ms
75,688 KB
testcase_04 AC 77 ms
75,432 KB
testcase_05 AC 75 ms
75,132 KB
testcase_06 AC 96 ms
77,708 KB
testcase_07 AC 75 ms
75,680 KB
testcase_08 AC 75 ms
75,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P, Q = map(int, raw_input().split())
m = 1
ans = 0
while N > 0:
    if P <= m and m < P + Q:
        N -= 2 * M
    else:
        N -= M
    ans += 1
    m = (m + 1) % 12
    if m == 0:
        m = 12
print ans
0