結果

問題 No.1114 足し算盆に返らず
ユーザー miya145592miya145592
提出日時 2023-05-17 00:26:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 86,960 KB
実行使用メモリ 80,464 KB
最終ジャッジ日時 2023-08-21 11:15:02
合計ジャッジ時間 9,685 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
80,336 KB
testcase_01 AC 89 ms
80,292 KB
testcase_02 AC 88 ms
80,260 KB
testcase_03 AC 87 ms
79,132 KB
testcase_04 AC 88 ms
80,280 KB
testcase_05 AC 87 ms
78,112 KB
testcase_06 AC 92 ms
80,380 KB
testcase_07 AC 92 ms
80,268 KB
testcase_08 AC 87 ms
78,480 KB
testcase_09 AC 84 ms
77,692 KB
testcase_10 AC 86 ms
78,400 KB
testcase_11 AC 82 ms
76,496 KB
testcase_12 AC 86 ms
78,868 KB
testcase_13 AC 91 ms
80,428 KB
testcase_14 AC 83 ms
76,628 KB
testcase_15 AC 85 ms
77,696 KB
testcase_16 AC 87 ms
78,300 KB
testcase_17 AC 86 ms
79,044 KB
testcase_18 AC 82 ms
76,608 KB
testcase_19 AC 84 ms
77,620 KB
testcase_20 AC 86 ms
80,464 KB
testcase_21 AC 83 ms
77,356 KB
testcase_22 AC 70 ms
71,472 KB
testcase_23 AC 70 ms
71,280 KB
testcase_24 AC 75 ms
71,276 KB
testcase_25 AC 73 ms
71,456 KB
testcase_26 AC 75 ms
71,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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