結果

問題 No.51 やる気の問題
ユーザー Taichi.NTaichi.N
提出日時 2020-11-18 16:20:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 94 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 60,720 KB
最終ジャッジ日時 2024-07-23 09:05:11
合計ジャッジ時間 1,967 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,696 KB
testcase_01 AC 36 ms
52,808 KB
testcase_02 AC 37 ms
53,068 KB
testcase_03 AC 41 ms
59,860 KB
testcase_04 AC 39 ms
58,648 KB
testcase_05 AC 40 ms
59,556 KB
testcase_06 AC 41 ms
59,080 KB
testcase_07 AC 41 ms
60,720 KB
testcase_08 AC 39 ms
58,432 KB
testcase_09 AC 40 ms
59,440 KB
testcase_10 AC 39 ms
59,580 KB
testcase_11 AC 40 ms
60,012 KB
testcase_12 AC 40 ms
58,612 KB
testcase_13 AC 39 ms
59,292 KB
testcase_14 AC 41 ms
58,480 KB
testcase_15 AC 41 ms
58,624 KB
testcase_16 AC 41 ms
59,312 KB
testcase_17 AC 41 ms
59,892 KB
testcase_18 AC 40 ms
58,448 KB
testcase_19 AC 42 ms
58,720 KB
testcase_20 AC 40 ms
58,684 KB
testcase_21 AC 40 ms
59,224 KB
testcase_22 AC 40 ms
58,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W, D = [int(input()) for _ in range(2)]
for d in range(D-1):
    W -= int(W/(D-d)**2)
print(W)
0