結果

問題 No.1114 足し算盆に返らず
ユーザー titiatitia
提出日時 2020-07-17 21:26:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 48 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 10,668 KB
実行使用メモリ 10,392 KB
最終ジャッジ日時 2023-08-19 23:32:29
合計ジャッジ時間 6,046 ms
ジャッジサーバーID
(参考情報)
judge13 / judge10
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,320 KB
testcase_01 AC 36 ms
10,300 KB
testcase_02 AC 35 ms
10,320 KB
testcase_03 AC 30 ms
9,876 KB
testcase_04 AC 35 ms
10,196 KB
testcase_05 AC 25 ms
9,416 KB
testcase_06 AC 34 ms
10,268 KB
testcase_07 AC 35 ms
10,116 KB
testcase_08 AC 27 ms
9,368 KB
testcase_09 AC 25 ms
9,392 KB
testcase_10 AC 27 ms
9,512 KB
testcase_11 AC 16 ms
8,424 KB
testcase_12 AC 29 ms
9,784 KB
testcase_13 AC 35 ms
10,308 KB
testcase_14 AC 17 ms
8,612 KB
testcase_15 AC 23 ms
9,056 KB
testcase_16 AC 26 ms
9,408 KB
testcase_17 AC 29 ms
9,644 KB
testcase_18 AC 21 ms
9,128 KB
testcase_19 AC 24 ms
9,260 KB
testcase_20 AC 35 ms
10,392 KB
testcase_21 AC 23 ms
9,136 KB
testcase_22 AC 14 ms
7,692 KB
testcase_23 AC 15 ms
7,920 KB
testcase_24 AC 15 ms
7,808 KB
testcase_25 AC 14 ms
7,724 KB
testcase_26 AC 14 ms
7,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
print(*list(range((N+2)//2,N+1)))
0