結果

問題 No.1114 足し算盆に返らず
ユーザー osrgy01osrgy01
提出日時 2021-04-30 14:50:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 40 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 10,448 KB
実行使用メモリ 10,652 KB
最終ジャッジ日時 2023-09-25 15:17:29
合計ジャッジ時間 7,109 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
10,484 KB
testcase_01 AC 37 ms
10,652 KB
testcase_02 AC 38 ms
10,652 KB
testcase_03 AC 33 ms
9,968 KB
testcase_04 AC 37 ms
10,092 KB
testcase_05 AC 27 ms
9,420 KB
testcase_06 AC 37 ms
10,208 KB
testcase_07 AC 37 ms
10,244 KB
testcase_08 AC 29 ms
9,464 KB
testcase_09 AC 27 ms
9,272 KB
testcase_10 AC 29 ms
9,560 KB
testcase_11 AC 17 ms
8,324 KB
testcase_12 AC 32 ms
9,612 KB
testcase_13 AC 38 ms
10,476 KB
testcase_14 AC 20 ms
8,660 KB
testcase_15 AC 25 ms
9,100 KB
testcase_16 AC 27 ms
9,440 KB
testcase_17 AC 32 ms
9,768 KB
testcase_18 AC 22 ms
8,944 KB
testcase_19 AC 25 ms
9,084 KB
testcase_20 AC 38 ms
10,604 KB
testcase_21 AC 25 ms
9,160 KB
testcase_22 AC 15 ms
7,804 KB
testcase_23 AC 16 ms
7,836 KB
testcase_24 AC 15 ms
7,740 KB
testcase_25 AC 15 ms
7,916 KB
testcase_26 AC 15 ms
7,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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