結果

問題 No.1114 足し算盆に返らず
ユーザー etale.K3etale.K3
提出日時 2021-01-02 01:57:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 42 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 10,652 KB
実行使用メモリ 10,500 KB
最終ジャッジ日時 2023-08-01 20:54:58
合計ジャッジ時間 8,466 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
10,500 KB
testcase_01 AC 37 ms
10,368 KB
testcase_02 AC 37 ms
10,448 KB
testcase_03 AC 33 ms
9,908 KB
testcase_04 AC 36 ms
10,352 KB
testcase_05 AC 26 ms
9,296 KB
testcase_06 AC 37 ms
10,368 KB
testcase_07 AC 36 ms
10,284 KB
testcase_08 AC 29 ms
9,540 KB
testcase_09 AC 27 ms
9,296 KB
testcase_10 AC 28 ms
9,428 KB
testcase_11 AC 17 ms
8,204 KB
testcase_12 AC 30 ms
9,624 KB
testcase_13 AC 36 ms
10,280 KB
testcase_14 AC 19 ms
8,716 KB
testcase_15 AC 25 ms
9,200 KB
testcase_16 AC 26 ms
9,364 KB
testcase_17 AC 31 ms
9,944 KB
testcase_18 AC 22 ms
8,892 KB
testcase_19 AC 25 ms
9,032 KB
testcase_20 AC 37 ms
10,332 KB
testcase_21 AC 24 ms
9,000 KB
testcase_22 AC 15 ms
7,936 KB
testcase_23 AC 15 ms
7,888 KB
testcase_24 AC 15 ms
7,856 KB
testcase_25 AC 15 ms
7,936 KB
testcase_26 AC 15 ms
7,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

print(*range(1, N+1, 2))
0