結果
問題 | No.1273 はじめのζ関数 |
ユーザー | Re_menal2 |
提出日時 | 2020-10-31 00:35:27 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 229 bytes |
コンパイル時間 | 53 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 35,616 KB |
最終ジャッジ日時 | 2024-07-22 04:08:50 |
合計ジャッジ時間 | 6,291 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 89 ms
12,160 KB |
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 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
x = gets.to_i cnt = 0 one = 1.to_f ans = 0 if x==2 ans = 10 ** 6 end if x != 2 for i in 1..10000 key = one / (i ** x) cnt += ((1 / i) - key) * (one / (i - 1)) end ans = cnt * (10 ** 6) end print(ans.floor)