結果

問題 No.1114 足し算盆に返らず
ユーザー _matumo__matumo_
提出日時 2020-07-22 23:14:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 642 ms
コンパイル使用メモリ 10,520 KB
実行使用メモリ 11,020 KB
最終ジャッジ日時 2023-09-05 04:12:38
合計ジャッジ時間 9,595 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
10,904 KB
testcase_01 AC 39 ms
11,020 KB
testcase_02 AC 39 ms
10,908 KB
testcase_03 AC 35 ms
10,472 KB
testcase_04 AC 39 ms
10,616 KB
testcase_05 AC 28 ms
9,508 KB
testcase_06 AC 39 ms
10,808 KB
testcase_07 AC 38 ms
10,996 KB
testcase_08 AC 30 ms
9,908 KB
testcase_09 AC 27 ms
9,432 KB
testcase_10 AC 31 ms
9,780 KB
testcase_11 AC 18 ms
8,408 KB
testcase_12 AC 32 ms
10,036 KB
testcase_13 AC 40 ms
10,884 KB
testcase_14 AC 20 ms
8,664 KB
testcase_15 AC 25 ms
9,228 KB
testcase_16 AC 29 ms
9,536 KB
testcase_17 AC 33 ms
10,096 KB
testcase_18 AC 24 ms
9,036 KB
testcase_19 AC 26 ms
9,324 KB
testcase_20 AC 39 ms
10,992 KB
testcase_21 AC 25 ms
9,144 KB
testcase_22 AC 15 ms
7,820 KB
testcase_23 AC 15 ms
7,924 KB
testcase_24 AC 15 ms
7,864 KB
testcase_25 AC 15 ms
7,824 KB
testcase_26 AC 15 ms
7,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
p=[n for n in range(N//2+1,N+1)]
print(*p)
0