結果

問題 No.740 幻の木
ユーザー rlangevinrlangevin
提出日時 2024-08-28 08:56:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 53,284 KB
最終ジャッジ日時 2024-08-28 08:56:53
合計ジャッジ時間 1,691 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,880 KB
testcase_01 AC 35 ms
53,284 KB
testcase_02 AC 35 ms
52,556 KB
testcase_03 AC 44 ms
51,900 KB
testcase_04 AC 35 ms
52,740 KB
testcase_05 AC 36 ms
52,704 KB
testcase_06 AC 36 ms
52,192 KB
testcase_07 AC 43 ms
52,396 KB
testcase_08 AC 37 ms
52,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P, Q = map(int, input().split())
v = 12 * M + Q * M
ans = N // v * 12
N %= v
P -= 1
L = [M] * 12
for i in range(P, P + Q):
    L[i] += M
    
for i in range(12):
    N -= L[i]
    ans += 1
    if N <= 0:
        break

print(ans)
0