結果

問題 No.1114 足し算盆に返らず
ユーザー c-yanc-yan
提出日時 2020-07-17 21:32:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 10,588 KB
実行使用メモリ 10,532 KB
最終ジャッジ日時 2023-08-19 23:54:50
合計ジャッジ時間 6,035 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
10,488 KB
testcase_01 AC 38 ms
10,476 KB
testcase_02 AC 37 ms
10,476 KB
testcase_03 AC 33 ms
9,908 KB
testcase_04 AC 36 ms
10,388 KB
testcase_05 AC 26 ms
9,384 KB
testcase_06 AC 37 ms
10,452 KB
testcase_07 AC 36 ms
10,532 KB
testcase_08 AC 29 ms
9,552 KB
testcase_09 AC 26 ms
9,332 KB
testcase_10 AC 28 ms
9,624 KB
testcase_11 AC 16 ms
8,140 KB
testcase_12 AC 30 ms
9,868 KB
testcase_13 AC 38 ms
10,532 KB
testcase_14 AC 18 ms
8,508 KB
testcase_15 AC 24 ms
9,076 KB
testcase_16 AC 27 ms
9,492 KB
testcase_17 AC 31 ms
9,880 KB
testcase_18 AC 21 ms
9,068 KB
testcase_19 AC 25 ms
9,192 KB
testcase_20 AC 38 ms
10,356 KB
testcase_21 AC 24 ms
8,968 KB
testcase_22 AC 15 ms
7,852 KB
testcase_23 AC 14 ms
7,772 KB
testcase_24 AC 15 ms
7,812 KB
testcase_25 AC 15 ms
7,760 KB
testcase_26 AC 14 ms
7,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

print(*(i + 1 for i in range(0, N, 2)))
0