結果

問題 No.1114 足し算盆に返らず
ユーザー xuanjixuanji
提出日時 2020-07-17 21:33:42
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 120 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 87,236 KB
実行使用メモリ 81,880 KB
最終ジャッジ日時 2023-08-19 23:57:27
合計ジャッジ時間 8,485 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
81,832 KB
testcase_01 AC 86 ms
81,716 KB
testcase_02 AC 84 ms
81,880 KB
testcase_03 AC 79 ms
79,400 KB
testcase_04 AC 84 ms
81,576 KB
testcase_05 AC 77 ms
78,036 KB
testcase_06 AC 85 ms
81,640 KB
testcase_07 AC 83 ms
81,476 KB
testcase_08 AC 80 ms
78,632 KB
testcase_09 AC 79 ms
78,108 KB
testcase_10 AC 81 ms
78,612 KB
testcase_11 AC 74 ms
76,468 KB
testcase_12 AC 79 ms
79,124 KB
testcase_13 AC 84 ms
81,648 KB
testcase_14 AC 78 ms
76,888 KB
testcase_15 AC 79 ms
77,408 KB
testcase_16 AC 81 ms
78,244 KB
testcase_17 AC 89 ms
78,840 KB
testcase_18 AC 79 ms
76,836 KB
testcase_19 AC 81 ms
77,668 KB
testcase_20 AC 88 ms
81,860 KB
testcase_21 AC 81 ms
77,524 KB
testcase_22 AC 69 ms
71,264 KB
testcase_23 AC 67 ms
71,332 KB
testcase_24 AC 65 ms
71,416 KB
testcase_25 AC 65 ms
71,276 KB
testcase_26 AC 62 ms
71,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

N = int(input())
ret = []
for i in range(1,N+1):
    if i % 2 == 1:
        ret += [i]
print(*ret)
0