結果

問題 No.1408 Nice Dice Game
ユーザー 👑 KazunKazun
提出日時 2021-02-26 22:24:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 115 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,500 KB
最終ジャッジ日時 2024-10-02 15:12:02
合計ジャッジ時間 11,206 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 47 ms
57,984 KB
testcase_02 AC 48 ms
58,368 KB
testcase_03 AC 427 ms
72,448 KB
testcase_04 AC 199 ms
71,256 KB
testcase_05 AC 76 ms
70,912 KB
testcase_06 AC 580 ms
73,856 KB
testcase_07 AC 639 ms
75,144 KB
testcase_08 AC 681 ms
75,500 KB
testcase_09 AC 632 ms
75,008 KB
testcase_10 AC 528 ms
73,600 KB
testcase_11 AC 520 ms
74,368 KB
testcase_12 AC 76 ms
70,812 KB
testcase_13 AC 406 ms
72,552 KB
testcase_14 AC 466 ms
73,824 KB
testcase_15 AC 657 ms
74,316 KB
testcase_16 AC 176 ms
71,280 KB
testcase_17 AC 149 ms
70,944 KB
testcase_18 AC 321 ms
72,492 KB
testcase_19 AC 576 ms
74,372 KB
testcase_20 AC 194 ms
71,296 KB
testcase_21 AC 70 ms
70,772 KB
testcase_22 AC 456 ms
73,216 KB
testcase_23 AC 405 ms
73,088 KB
testcase_24 AC 147 ms
70,700 KB
testcase_25 AC 621 ms
74,420 KB
testcase_26 AC 40 ms
52,608 KB
testcase_27 AC 40 ms
51,840 KB
testcase_28 AC 39 ms
52,424 KB
testcase_29 AC 40 ms
52,352 KB
testcase_30 AC 39 ms
52,352 KB
testcase_31 AC 39 ms
51,840 KB
testcase_32 AC 39 ms
52,224 KB
testcase_33 AC 40 ms
52,224 KB
testcase_34 AC 41 ms
52,096 KB
testcase_35 AC 39 ms
52,224 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def Zeta(s):
    X=0
    for k in range(1,100):
        X+=1/pow(k,s)
    return X

N=int(input())
print(Zeta(N+2))
0