結果

問題 No.1114 足し算盆に返らず
ユーザー MaboyMaboy
提出日時 2021-09-29 09:10:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 80 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 10,692 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2023-09-23 06:46:36
合計ジャッジ時間 6,814 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
13,728 KB
testcase_01 AC 31 ms
13,888 KB
testcase_02 AC 31 ms
13,740 KB
testcase_03 AC 28 ms
12,528 KB
testcase_04 AC 31 ms
13,672 KB
testcase_05 AC 23 ms
10,896 KB
testcase_06 AC 30 ms
13,700 KB
testcase_07 AC 30 ms
13,624 KB
testcase_08 AC 24 ms
11,464 KB
testcase_09 AC 23 ms
11,100 KB
testcase_10 AC 25 ms
11,460 KB
testcase_11 AC 17 ms
8,200 KB
testcase_12 AC 27 ms
12,180 KB
testcase_13 AC 31 ms
13,752 KB
testcase_14 AC 18 ms
9,020 KB
testcase_15 AC 21 ms
10,452 KB
testcase_16 AC 24 ms
10,968 KB
testcase_17 AC 27 ms
12,104 KB
testcase_18 AC 20 ms
9,752 KB
testcase_19 AC 22 ms
10,488 KB
testcase_20 AC 31 ms
13,740 KB
testcase_21 AC 22 ms
10,332 KB
testcase_22 AC 15 ms
7,860 KB
testcase_23 AC 15 ms
7,808 KB
testcase_24 AC 16 ms
7,788 KB
testcase_25 AC 16 ms
7,868 KB
testcase_26 AC 16 ms
7,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = [x for x in range(1,n+(n&1),2)]
print(" ".join(map(str,l)))
0