結果

問題 No.1114 足し算盆に返らず
ユーザー shamioshamio
提出日時 2020-07-18 07:18:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 89 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 10,668 KB
実行使用メモリ 10,948 KB
最終ジャッジ日時 2023-08-20 16:53:35
合計ジャッジ時間 5,460 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,820 KB
testcase_01 AC 34 ms
10,848 KB
testcase_02 AC 32 ms
10,948 KB
testcase_03 AC 31 ms
10,148 KB
testcase_04 AC 32 ms
10,756 KB
testcase_05 AC 22 ms
9,468 KB
testcase_06 AC 31 ms
10,716 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 24 ms
9,820 KB
testcase_09 AC 23 ms
9,380 KB
testcase_10 AC 25 ms
9,692 KB
testcase_11 AC 14 ms
8,580 KB
testcase_12 AC 26 ms
9,916 KB
testcase_13 AC 32 ms
10,840 KB
testcase_14 AC 16 ms
8,660 KB
testcase_15 AC 21 ms
9,148 KB
testcase_16 AC 22 ms
9,708 KB
testcase_17 AC 26 ms
9,964 KB
testcase_18 AC 19 ms
8,996 KB
testcase_19 AC 21 ms
9,200 KB
testcase_20 AC 31 ms
10,760 KB
testcase_21 AC 21 ms
9,060 KB
testcase_22 AC 13 ms
7,884 KB
testcase_23 AC 12 ms
7,812 KB
testcase_24 AC 13 ms
7,884 KB
testcase_25 AC 12 ms
7,840 KB
testcase_26 AC 13 ms
7,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

cnt = (n + 1) // 2
ans = list(range(n, n - cnt, -1))[::-1]
print(*ans)
0