結果

問題 No.51 やる気の問題
ユーザー roiti46roiti46
提出日時 2014-12-17 00:59:33
言語 Python2
(2.7.18)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 90 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 8,908 KB
最終ジャッジ日時 2023-09-02 16:00:06
合計ジャッジ時間 2,584 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,004 KB
testcase_01 AC 11 ms
5,976 KB
testcase_02 AC 11 ms
5,984 KB
testcase_03 AC 12 ms
5,936 KB
testcase_04 AC 11 ms
5,984 KB
testcase_05 AC 25 ms
7,888 KB
testcase_06 AC 21 ms
7,376 KB
testcase_07 AC 20 ms
7,008 KB
testcase_08 AC 16 ms
6,444 KB
testcase_09 AC 32 ms
8,864 KB
testcase_10 AC 18 ms
6,720 KB
testcase_11 AC 16 ms
6,500 KB
testcase_12 AC 21 ms
7,284 KB
testcase_13 AC 22 ms
7,212 KB
testcase_14 AC 20 ms
7,156 KB
testcase_15 AC 27 ms
8,152 KB
testcase_16 AC 15 ms
6,436 KB
testcase_17 AC 13 ms
6,152 KB
testcase_18 AC 27 ms
8,280 KB
testcase_19 AC 27 ms
8,268 KB
testcase_20 AC 21 ms
7,292 KB
testcase_21 AC 12 ms
6,044 KB
testcase_22 AC 31 ms
8,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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