結果

問題 No.1114 足し算盆に返らず
ユーザー toyuzukotoyuzuko
提出日時 2020-07-19 09:47:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 61 bytes
コンパイル時間 986 ms
コンパイル使用メモリ 10,588 KB
実行使用メモリ 10,464 KB
最終ジャッジ日時 2023-08-22 09:47:46
合計ジャッジ時間 11,796 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
10,436 KB
testcase_01 AC 42 ms
10,464 KB
testcase_02 AC 42 ms
10,392 KB
testcase_03 AC 37 ms
10,044 KB
testcase_04 AC 42 ms
10,336 KB
testcase_05 AC 29 ms
9,488 KB
testcase_06 AC 41 ms
10,396 KB
testcase_07 AC 41 ms
10,276 KB
testcase_08 AC 32 ms
9,656 KB
testcase_09 AC 29 ms
9,472 KB
testcase_10 AC 32 ms
9,596 KB
testcase_11 AC 17 ms
8,168 KB
testcase_12 AC 34 ms
9,832 KB
testcase_13 AC 42 ms
10,364 KB
testcase_14 AC 19 ms
8,556 KB
testcase_15 AC 26 ms
9,220 KB
testcase_16 AC 30 ms
9,536 KB
testcase_17 AC 34 ms
9,880 KB
testcase_18 AC 24 ms
8,960 KB
testcase_19 AC 27 ms
9,288 KB
testcase_20 AC 43 ms
10,396 KB
testcase_21 AC 26 ms
9,188 KB
testcase_22 AC 16 ms
7,860 KB
testcase_23 AC 15 ms
7,800 KB
testcase_24 AC 16 ms
7,968 KB
testcase_25 AC 15 ms
7,840 KB
testcase_26 AC 16 ms
7,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print(*[i for i in range(1, int(input()) + 1) if i % 2 == 1])
0