結果

問題 No.1114 足し算盆に返らず
ユーザー pluto77pluto77
提出日時 2020-07-30 10:38:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 51 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 10,616 KB
実行使用メモリ 10,436 KB
最終ジャッジ日時 2023-09-16 14:07:27
合計ジャッジ時間 7,667 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,344 KB
testcase_01 AC 37 ms
10,436 KB
testcase_02 AC 37 ms
10,420 KB
testcase_03 AC 32 ms
9,888 KB
testcase_04 AC 36 ms
10,344 KB
testcase_05 AC 26 ms
9,264 KB
testcase_06 AC 36 ms
10,364 KB
testcase_07 AC 36 ms
10,360 KB
testcase_08 AC 27 ms
9,532 KB
testcase_09 AC 26 ms
9,364 KB
testcase_10 AC 28 ms
9,560 KB
testcase_11 AC 16 ms
8,388 KB
testcase_12 AC 29 ms
9,892 KB
testcase_13 AC 37 ms
10,324 KB
testcase_14 AC 18 ms
8,656 KB
testcase_15 AC 23 ms
9,100 KB
testcase_16 AC 26 ms
9,288 KB
testcase_17 AC 30 ms
9,820 KB
testcase_18 AC 21 ms
9,008 KB
testcase_19 AC 25 ms
9,180 KB
testcase_20 AC 36 ms
10,368 KB
testcase_21 AC 23 ms
9,120 KB
testcase_22 AC 14 ms
7,816 KB
testcase_23 AC 15 ms
7,912 KB
testcase_24 AC 15 ms
7,736 KB
testcase_25 AC 14 ms
7,868 KB
testcase_26 AC 15 ms
7,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1114
n=int(input())
print(*range(1,n+1)[::2])
0