結果

問題 No.1114 足し算盆に返らず
ユーザー ttrttr
提出日時 2020-07-17 21:39:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 71 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 10,616 KB
実行使用メモリ 12,568 KB
最終ジャッジ日時 2023-08-20 00:12:45
合計ジャッジ時間 6,333 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
12,444 KB
testcase_01 AC 38 ms
12,476 KB
testcase_02 AC 38 ms
12,568 KB
testcase_03 AC 33 ms
11,360 KB
testcase_04 AC 36 ms
12,144 KB
testcase_05 AC 27 ms
10,428 KB
testcase_06 AC 37 ms
12,220 KB
testcase_07 AC 37 ms
12,316 KB
testcase_08 AC 28 ms
10,632 KB
testcase_09 AC 26 ms
10,176 KB
testcase_10 AC 28 ms
10,572 KB
testcase_11 AC 17 ms
8,472 KB
testcase_12 AC 30 ms
11,120 KB
testcase_13 AC 38 ms
12,228 KB
testcase_14 AC 18 ms
8,716 KB
testcase_15 AC 24 ms
9,944 KB
testcase_16 AC 27 ms
10,352 KB
testcase_17 AC 31 ms
11,084 KB
testcase_18 AC 21 ms
9,412 KB
testcase_19 AC 24 ms
9,876 KB
testcase_20 AC 38 ms
12,284 KB
testcase_21 AC 24 ms
9,616 KB
testcase_22 AC 15 ms
7,860 KB
testcase_23 AC 14 ms
7,796 KB
testcase_24 AC 14 ms
7,804 KB
testcase_25 AC 14 ms
7,768 KB
testcase_26 AC 15 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = [str(i) for i in range(1, N+1, 2)]
print(*ans)
0