結果

問題 No.740 幻の木
ユーザー ああいいああいい
提出日時 2022-06-12 20:03:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 59,700 KB
最終ジャッジ日時 2023-10-24 14:14:13
合計ジャッジ時間 1,127 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,480 KB
testcase_01 AC 37 ms
53,480 KB
testcase_02 AC 34 ms
53,480 KB
testcase_03 AC 33 ms
53,480 KB
testcase_04 AC 34 ms
53,480 KB
testcase_05 AC 35 ms
53,480 KB
testcase_06 AC 47 ms
59,700 KB
testcase_07 AC 33 ms
53,480 KB
testcase_08 AC 34 ms
53,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,P,Q = map(int,input().split())
now = 1
mod = 12
ans = 0
s =set()
for _ in range(Q):
    s.add((P + _) % mod)
while N:
    ans += 1
    if now in s:
        N = max(0,N - 2 * M)
    else:
        N = max(0,N - M)
    now = (now + 1) % mod
print(ans)
0