結果

問題 No.1273 はじめのζ関数
ユーザー 👑 KazunKazun
提出日時 2020-10-30 21:52:48
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 276 ms
使用メモリ 75,836 KB
最終ジャッジ日時 2023-02-21 12:19:09
合計ジャッジ時間 6,427 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 86 ms
75,676 KB
testcase_01 AC 86 ms
75,708 KB
testcase_02 AC 88 ms
75,716 KB
testcase_03 AC 87 ms
75,776 KB
testcase_04 AC 86 ms
75,432 KB
testcase_05 AC 85 ms
75,708 KB
testcase_06 AC 86 ms
75,700 KB
testcase_07 AC 86 ms
75,712 KB
testcase_08 AC 85 ms
75,720 KB
testcase_09 AC 86 ms
75,740 KB
testcase_10 AC 87 ms
75,784 KB
testcase_11 AC 85 ms
75,708 KB
testcase_12 AC 85 ms
75,548 KB
testcase_13 AC 86 ms
75,712 KB
testcase_14 AC 87 ms
75,732 KB
testcase_15 AC 88 ms
75,436 KB
testcase_16 AC 87 ms
75,488 KB
testcase_17 AC 87 ms
75,540 KB
testcase_18 AC 86 ms
75,736 KB
testcase_19 AC 87 ms
75,708 KB
testcase_20 AC 86 ms
75,476 KB
testcase_21 AC 87 ms
75,708 KB
testcase_22 AC 86 ms
75,484 KB
testcase_23 AC 87 ms
75,828 KB
testcase_24 AC 87 ms
75,704 KB
testcase_25 AC 87 ms
75,708 KB
testcase_26 AC 87 ms
75,780 KB
testcase_27 AC 87 ms
75,724 KB
testcase_28 AC 86 ms
75,680 KB
testcase_29 AC 87 ms
75,440 KB
testcase_30 AC 85 ms
75,776 KB
testcase_31 AC 86 ms
75,624 KB
testcase_32 AC 87 ms
75,388 KB
testcase_33 AC 85 ms
75,812 KB
testcase_34 AC 86 ms
75,488 KB
testcase_35 AC 86 ms
75,836 KB
testcase_36 AC 87 ms
75,700 KB
testcase_37 AC 87 ms
75,812 KB
testcase_38 AC 87 ms
75,632 KB
testcase_39 AC 86 ms
75,480 KB
testcase_40 AC 84 ms
75,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())
if x>=21:
    print(0)
    exit()
else:
    print([1000000, 355065, 153009, 70685, 33758, 16414, 8065, 3988, 1979, 985, \
491, 245, 122, 61, 30, 15, 7, 3, 1][x-2])
0