結果

問題 No.1114 足し算盆に返らず
ユーザー yatsurugiyatsurugi
提出日時 2020-08-17 12:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 55 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 73,688 KB
最終ジャッジ日時 2024-04-19 18:46:24
合計ジャッジ時間 15,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
73,000 KB
testcase_01 AC 47 ms
73,360 KB
testcase_02 AC 48 ms
73,636 KB
testcase_03 AC 44 ms
70,216 KB
testcase_04 AC 48 ms
72,880 KB
testcase_05 AC 45 ms
67,708 KB
testcase_06 AC 46 ms
73,488 KB
testcase_07 AC 47 ms
73,688 KB
testcase_08 AC 46 ms
69,048 KB
testcase_09 AC 43 ms
67,444 KB
testcase_10 AC 46 ms
68,376 KB
testcase_11 AC 42 ms
62,724 KB
testcase_12 AC 45 ms
70,084 KB
testcase_13 AC 47 ms
72,924 KB
testcase_14 AC 42 ms
63,452 KB
testcase_15 AC 44 ms
66,940 KB
testcase_16 AC 44 ms
68,336 KB
testcase_17 AC 45 ms
69,596 KB
testcase_18 AC 42 ms
64,760 KB
testcase_19 AC 43 ms
66,332 KB
testcase_20 AC 48 ms
73,400 KB
testcase_21 AC 42 ms
66,296 KB
testcase_22 AC 32 ms
52,128 KB
testcase_23 AC 32 ms
52,828 KB
testcase_24 AC 33 ms
53,216 KB
testcase_25 AC 31 ms
52,744 KB
testcase_26 AC 33 ms
53,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

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