結果

問題 No.51 やる気の問題
ユーザー a_tena_ten
提出日時 2016-03-15 21:56:38
言語 Python2
(2.7.18)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 122 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-10-01 07:02:51
合計ジャッジ時間 1,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 10 ms
6,816 KB
testcase_02 AC 10 ms
6,820 KB
testcase_03 AC 11 ms
6,820 KB
testcase_04 AC 10 ms
6,816 KB
testcase_05 AC 30 ms
8,960 KB
testcase_06 AC 23 ms
8,192 KB
testcase_07 AC 23 ms
8,192 KB
testcase_08 AC 17 ms
7,424 KB
testcase_09 AC 39 ms
10,112 KB
testcase_10 AC 20 ms
7,552 KB
testcase_11 AC 18 ms
7,424 KB
testcase_12 AC 26 ms
8,320 KB
testcase_13 AC 26 ms
8,448 KB
testcase_14 AC 21 ms
7,808 KB
testcase_15 AC 31 ms
9,344 KB
testcase_16 AC 16 ms
7,040 KB
testcase_17 AC 11 ms
6,820 KB
testcase_18 AC 35 ms
9,472 KB
testcase_19 AC 33 ms
9,600 KB
testcase_20 AC 24 ms
8,192 KB
testcase_21 AC 15 ms
6,816 KB
testcase_22 AC 37 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8

W=input()
D=input()

for i in range(1,D+1)[::-1]:
	if i != 1:
		W-=(W/(pow(i,2)))
	else:
		break
		
print W
0