結果

問題 No.1114 足し算盆に返らず
ユーザー lloyzlloyz
提出日時 2022-02-17 00:15:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 78 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 10,652 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2023-09-11 17:19:04
合計ジャッジ時間 9,364 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
10,820 KB
testcase_01 AC 43 ms
10,824 KB
testcase_02 AC 43 ms
10,992 KB
testcase_03 AC 37 ms
10,400 KB
testcase_04 AC 42 ms
10,948 KB
testcase_05 AC 29 ms
9,728 KB
testcase_06 AC 42 ms
11,008 KB
testcase_07 AC 42 ms
10,932 KB
testcase_08 AC 32 ms
9,812 KB
testcase_09 AC 29 ms
9,572 KB
testcase_10 AC 31 ms
9,660 KB
testcase_11 AC 17 ms
8,356 KB
testcase_12 AC 35 ms
10,276 KB
testcase_13 AC 46 ms
10,804 KB
testcase_14 AC 20 ms
8,644 KB
testcase_15 AC 26 ms
9,116 KB
testcase_16 AC 30 ms
9,628 KB
testcase_17 AC 35 ms
10,140 KB
testcase_18 AC 24 ms
9,180 KB
testcase_19 AC 27 ms
9,344 KB
testcase_20 AC 42 ms
10,996 KB
testcase_21 AC 26 ms
9,212 KB
testcase_22 AC 16 ms
7,792 KB
testcase_23 AC 15 ms
7,868 KB
testcase_24 AC 15 ms
7,832 KB
testcase_25 AC 16 ms
7,832 KB
testcase_26 AC 15 ms
7,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

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