結果

問題 No.51 やる気の問題
ユーザー splash9494splash9494
提出日時 2024-05-14 23:37:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 94 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 59,636 KB
最終ジャッジ日時 2024-05-14 23:37:56
合計ジャッジ時間 2,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,124 KB
testcase_01 AC 38 ms
52,460 KB
testcase_02 AC 39 ms
52,292 KB
testcase_03 AC 42 ms
57,916 KB
testcase_04 AC 41 ms
57,852 KB
testcase_05 AC 43 ms
58,920 KB
testcase_06 AC 42 ms
59,200 KB
testcase_07 AC 43 ms
58,268 KB
testcase_08 AC 42 ms
57,792 KB
testcase_09 AC 45 ms
58,516 KB
testcase_10 AC 42 ms
58,568 KB
testcase_11 AC 42 ms
59,272 KB
testcase_12 AC 42 ms
59,312 KB
testcase_13 AC 42 ms
58,632 KB
testcase_14 AC 42 ms
58,268 KB
testcase_15 AC 43 ms
59,636 KB
testcase_16 AC 42 ms
58,520 KB
testcase_17 AC 42 ms
58,148 KB
testcase_18 AC 43 ms
58,180 KB
testcase_19 AC 42 ms
57,980 KB
testcase_20 AC 43 ms
58,544 KB
testcase_21 AC 42 ms
59,232 KB
testcase_22 AC 43 ms
59,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W = int(input())
D = int(input())

for day in range(D, 1, -1):
    W -= W // (day**2)
print(W)
0