結果
問題 | No.1273 はじめのζ関数 |
ユーザー | Somtk_42 |
提出日時 | 2020-10-30 22:06:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 192 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,824 KB |
最終ジャッジ日時 | 2024-07-22 00:42:47 |
合計ジャッジ時間 | 7,187 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
17,824 KB |
testcase_01 | AC | 134 ms
10,752 KB |
testcase_02 | AC | 153 ms
10,752 KB |
testcase_03 | AC | 193 ms
10,880 KB |
testcase_04 | AC | 135 ms
10,880 KB |
testcase_05 | AC | 126 ms
10,752 KB |
testcase_06 | AC | 182 ms
10,880 KB |
testcase_07 | AC | 137 ms
10,752 KB |
testcase_08 | AC | 188 ms
10,880 KB |
testcase_09 | AC | 161 ms
10,880 KB |
testcase_10 | AC | 192 ms
10,880 KB |
testcase_11 | AC | 125 ms
10,752 KB |
testcase_12 | AC | 133 ms
10,752 KB |
testcase_13 | AC | 198 ms
10,880 KB |
testcase_14 | AC | 137 ms
10,880 KB |
testcase_15 | AC | 142 ms
10,752 KB |
testcase_16 | AC | 142 ms
10,880 KB |
testcase_17 | AC | 137 ms
10,752 KB |
testcase_18 | AC | 152 ms
10,880 KB |
testcase_19 | AC | 158 ms
10,752 KB |
testcase_20 | WA | - |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
from math import floor def z(n): r = 0 for i in range(1,1000): r += 1/pow(i, n) return r x = int(input()) ans = 0 for i in range(x, x+100): ans += z(i)-1 print(floor(ans*1000000))