結果

問題 No.1114 足し算盆に返らず
ユーザー tyawanmusityawanmusi
提出日時 2020-07-17 21:21:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 52 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 10,508 KB
実行使用メモリ 10,552 KB
最終ジャッジ日時 2023-08-19 23:21:29
合計ジャッジ時間 8,723 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
10,384 KB
testcase_01 AC 39 ms
10,552 KB
testcase_02 AC 37 ms
10,512 KB
testcase_03 AC 32 ms
10,004 KB
testcase_04 AC 36 ms
10,440 KB
testcase_05 AC 26 ms
9,500 KB
testcase_06 AC 36 ms
10,340 KB
testcase_07 AC 36 ms
10,416 KB
testcase_08 AC 29 ms
9,644 KB
testcase_09 AC 26 ms
9,444 KB
testcase_10 AC 28 ms
9,660 KB
testcase_11 AC 16 ms
8,300 KB
testcase_12 AC 30 ms
9,820 KB
testcase_13 AC 37 ms
10,468 KB
testcase_14 AC 18 ms
8,580 KB
testcase_15 AC 24 ms
9,200 KB
testcase_16 AC 26 ms
9,484 KB
testcase_17 AC 30 ms
9,732 KB
testcase_18 AC 21 ms
8,808 KB
testcase_19 AC 24 ms
9,184 KB
testcase_20 AC 36 ms
10,372 KB
testcase_21 AC 24 ms
9,132 KB
testcase_22 AC 15 ms
7,848 KB
testcase_23 AC 14 ms
7,856 KB
testcase_24 AC 14 ms
7,964 KB
testcase_25 AC 15 ms
7,828 KB
testcase_26 AC 14 ms
7,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
print(*[i for i in range(n,n//2,-1)])
0