結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,072 KB
testcase_01 AC 46 ms
59,156 KB
testcase_02 AC 47 ms
58,956 KB
testcase_03 AC 415 ms
72,980 KB
testcase_04 AC 194 ms
71,680 KB
testcase_05 AC 71 ms
70,784 KB
testcase_06 AC 567 ms
74,112 KB
testcase_07 AC 621 ms
75,780 KB
testcase_08 AC 649 ms
75,896 KB
testcase_09 AC 622 ms
75,264 KB
testcase_10 AC 500 ms
74,188 KB
testcase_11 AC 513 ms
74,720 KB
testcase_12 AC 76 ms
70,972 KB
testcase_13 AC 401 ms
72,956 KB
testcase_14 AC 459 ms
73,544 KB
testcase_15 AC 644 ms
74,700 KB
testcase_16 AC 175 ms
71,404 KB
testcase_17 AC 145 ms
71,404 KB
testcase_18 AC 315 ms
72,296 KB
testcase_19 AC 559 ms
74,624 KB
testcase_20 AC 189 ms
71,260 KB
testcase_21 AC 67 ms
71,088 KB
testcase_22 AC 446 ms
72,836 KB
testcase_23 AC 400 ms
73,088 KB
testcase_24 AC 144 ms
71,116 KB
testcase_25 AC 617 ms
74,752 KB
testcase_26 AC 38 ms
52,352 KB
testcase_27 AC 37 ms
51,968 KB
testcase_28 AC 37 ms
52,336 KB
testcase_29 AC 37 ms
52,480 KB
testcase_30 AC 37 ms
52,864 KB
testcase_31 AC 37 ms
52,096 KB
testcase_32 AC 38 ms
52,736 KB
testcase_33 AC 38 ms
52,460 KB
testcase_34 AC 37 ms
52,224 KB
testcase_35 AC 37 ms
52,352 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