結果

問題 No.1114 足し算盆に返らず
ユーザー ssmkzkssmkzk
提出日時 2020-11-15 00:10:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 10,704 KB
実行使用メモリ 13,836 KB
最終ジャッジ日時 2023-09-30 06:41:46
合計ジャッジ時間 6,651 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
13,708 KB
testcase_01 AC 39 ms
13,780 KB
testcase_02 AC 40 ms
13,836 KB
testcase_03 AC 35 ms
12,344 KB
testcase_04 AC 38 ms
13,476 KB
testcase_05 AC 28 ms
10,828 KB
testcase_06 AC 38 ms
13,436 KB
testcase_07 AC 38 ms
13,584 KB
testcase_08 AC 29 ms
11,424 KB
testcase_09 AC 27 ms
10,952 KB
testcase_10 AC 29 ms
11,452 KB
testcase_11 AC 17 ms
8,224 KB
testcase_12 AC 31 ms
12,156 KB
testcase_13 AC 39 ms
13,696 KB
testcase_14 AC 19 ms
9,028 KB
testcase_15 AC 25 ms
10,292 KB
testcase_16 AC 28 ms
11,012 KB
testcase_17 AC 33 ms
12,092 KB
testcase_18 AC 22 ms
9,736 KB
testcase_19 AC 25 ms
10,336 KB
testcase_20 AC 39 ms
13,732 KB
testcase_21 AC 25 ms
10,228 KB
testcase_22 AC 16 ms
7,784 KB
testcase_23 AC 16 ms
7,724 KB
testcase_24 AC 16 ms
7,724 KB
testcase_25 AC 15 ms
7,724 KB
testcase_26 AC 16 ms
7,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = [i+1  for i in range(N) if (i + 1) % 2 != 0]

print(" ".join(map(str,l)))
0