結果

問題 No.1114 足し算盆に返らず
ユーザー nohakai3nohakai3
提出日時 2022-07-20 13:46:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 88 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 10,672 KB
実行使用メモリ 10,968 KB
最終ジャッジ日時 2023-09-15 09:26:49
合計ジャッジ時間 6,938 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
10,852 KB
testcase_01 AC 49 ms
10,776 KB
testcase_02 AC 49 ms
10,868 KB
testcase_03 AC 42 ms
10,464 KB
testcase_04 AC 48 ms
10,892 KB
testcase_05 AC 33 ms
9,680 KB
testcase_06 AC 49 ms
10,968 KB
testcase_07 AC 47 ms
10,940 KB
testcase_08 AC 36 ms
9,900 KB
testcase_09 AC 33 ms
9,604 KB
testcase_10 AC 36 ms
9,844 KB
testcase_11 AC 18 ms
8,336 KB
testcase_12 AC 39 ms
10,296 KB
testcase_13 AC 49 ms
10,864 KB
testcase_14 AC 21 ms
8,688 KB
testcase_15 AC 29 ms
9,164 KB
testcase_16 AC 34 ms
9,668 KB
testcase_17 AC 39 ms
10,116 KB
testcase_18 AC 26 ms
9,072 KB
testcase_19 AC 30 ms
9,456 KB
testcase_20 AC 49 ms
10,892 KB
testcase_21 AC 28 ms
9,180 KB
testcase_22 AC 15 ms
7,804 KB
testcase_23 AC 15 ms
7,800 KB
testcase_24 AC 15 ms
7,764 KB
testcase_25 AC 15 ms
7,892 KB
testcase_26 AC 16 ms
7,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[]
for i in range(1,n+1):
    if i%2==1:
        l.append(i)

print(*l)
0