結果

問題 No.1408 Nice Dice Game
ユーザー 👑 KazunKazun
提出日時 2021-02-26 22:26:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,520 KB
最終ジャッジ日時 2024-10-02 15:13:48
合計ジャッジ時間 11,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
75,392 KB
testcase_01 AC 52 ms
57,984 KB
testcase_02 AC 49 ms
58,368 KB
testcase_03 AC 429 ms
72,576 KB
testcase_04 AC 204 ms
71,168 KB
testcase_05 AC 83 ms
70,528 KB
testcase_06 AC 580 ms
74,496 KB
testcase_07 AC 635 ms
75,392 KB
testcase_08 AC 685 ms
75,520 KB
testcase_09 AC 634 ms
75,264 KB
testcase_10 AC 516 ms
73,728 KB
testcase_11 AC 521 ms
74,240 KB
testcase_12 AC 85 ms
71,168 KB
testcase_13 AC 407 ms
73,088 KB
testcase_14 AC 472 ms
73,856 KB
testcase_15 AC 657 ms
74,880 KB
testcase_16 AC 186 ms
71,296 KB
testcase_17 AC 159 ms
71,168 KB
testcase_18 AC 321 ms
72,320 KB
testcase_19 AC 567 ms
74,112 KB
testcase_20 AC 199 ms
71,296 KB
testcase_21 AC 80 ms
70,784 KB
testcase_22 AC 451 ms
72,960 KB
testcase_23 AC 408 ms
72,832 KB
testcase_24 AC 151 ms
71,424 KB
testcase_25 AC 611 ms
74,240 KB
testcase_26 AC 40 ms
52,352 KB
testcase_27 AC 182 ms
75,136 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 40 ms
52,096 KB
testcase_30 AC 39 ms
52,096 KB
testcase_31 AC 40 ms
52,096 KB
testcase_32 AC 40 ms
52,224 KB
testcase_33 AC 40 ms
52,352 KB
testcase_34 AC 40 ms
51,968 KB
testcase_35 AC 40 ms
52,096 KB
testcase_36 AC 45 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Zeta(s):
    X=0
    T=100 if s>=10 else 10**5
    for k in range(1,T):
        X+=1/pow(k,s)
    return X

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