結果

問題 No.1114 足し算盆に返らず
ユーザー hir355hir355
提出日時 2020-07-17 21:25:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 50 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 10,624 KB
実行使用メモリ 10,468 KB
最終ジャッジ日時 2023-08-19 23:30:18
合計ジャッジ時間 6,712 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,468 KB
testcase_01 AC 35 ms
10,372 KB
testcase_02 AC 36 ms
10,320 KB
testcase_03 AC 31 ms
9,944 KB
testcase_04 AC 34 ms
10,140 KB
testcase_05 AC 25 ms
9,272 KB
testcase_06 AC 34 ms
10,404 KB
testcase_07 AC 34 ms
10,424 KB
testcase_08 AC 27 ms
9,372 KB
testcase_09 AC 25 ms
9,252 KB
testcase_10 AC 27 ms
9,420 KB
testcase_11 AC 15 ms
8,192 KB
testcase_12 AC 29 ms
9,680 KB
testcase_13 AC 35 ms
10,324 KB
testcase_14 AC 18 ms
8,684 KB
testcase_15 AC 23 ms
9,064 KB
testcase_16 AC 26 ms
9,432 KB
testcase_17 AC 29 ms
9,532 KB
testcase_18 AC 21 ms
8,792 KB
testcase_19 AC 23 ms
8,988 KB
testcase_20 AC 36 ms
10,324 KB
testcase_21 AC 24 ms
8,924 KB
testcase_22 AC 14 ms
7,900 KB
testcase_23 AC 14 ms
7,724 KB
testcase_24 AC 15 ms
7,784 KB
testcase_25 AC 14 ms
7,900 KB
testcase_26 AC 14 ms
7,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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