結果
| 問題 |
No.1408 Nice Dice Game
|
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 35 WA * 1 |
ソースコード
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))
Kazun