結果

問題 No.1114 足し算盆に返らず
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-07-17 21:36:32
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 45 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 10,580 KB
実行使用メモリ 10,504 KB
最終ジャッジ日時 2023-08-20 00:03:10
合計ジャッジ時間 6,398 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,316 KB
testcase_01 AC 35 ms
10,328 KB
testcase_02 AC 35 ms
10,412 KB
testcase_03 AC 30 ms
9,784 KB
testcase_04 AC 33 ms
10,312 KB
testcase_05 AC 25 ms
9,256 KB
testcase_06 AC 34 ms
10,268 KB
testcase_07 AC 33 ms
10,408 KB
testcase_08 AC 26 ms
9,616 KB
testcase_09 AC 25 ms
9,352 KB
testcase_10 AC 26 ms
9,720 KB
testcase_11 AC 16 ms
8,212 KB
testcase_12 AC 28 ms
9,956 KB
testcase_13 AC 35 ms
10,504 KB
testcase_14 AC 18 ms
8,624 KB
testcase_15 AC 22 ms
9,144 KB
testcase_16 AC 25 ms
9,348 KB
testcase_17 AC 29 ms
9,916 KB
testcase_18 AC 21 ms
8,724 KB
testcase_19 AC 24 ms
9,172 KB
testcase_20 AC 35 ms
10,336 KB
testcase_21 AC 23 ms
8,944 KB
testcase_22 AC 14 ms
7,720 KB
testcase_23 AC 14 ms
7,796 KB
testcase_24 AC 14 ms
7,936 KB
testcase_25 AC 15 ms
7,940 KB
testcase_26 AC 14 ms
7,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print(*range(1, n + 1)[::2])
0