結果

問題 No.1114 足し算盆に返らず
ユーザー first_vilfirst_vil
提出日時 2020-07-18 17:13:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 10,640 KB
実行使用メモリ 12,112 KB
最終ジャッジ日時 2023-08-20 17:46:26
合計ジャッジ時間 5,945 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
11,920 KB
testcase_01 AC 23 ms
11,940 KB
testcase_02 AC 23 ms
12,112 KB
testcase_03 AC 20 ms
10,844 KB
testcase_04 AC 21 ms
11,680 KB
testcase_05 AC 18 ms
9,900 KB
testcase_06 AC 22 ms
11,704 KB
testcase_07 AC 21 ms
11,736 KB
testcase_08 AC 18 ms
10,176 KB
testcase_09 AC 17 ms
9,952 KB
testcase_10 AC 18 ms
10,208 KB
testcase_11 AC 14 ms
8,236 KB
testcase_12 AC 19 ms
10,644 KB
testcase_13 AC 22 ms
12,004 KB
testcase_14 AC 14 ms
8,740 KB
testcase_15 AC 16 ms
9,656 KB
testcase_16 AC 18 ms
10,124 KB
testcase_17 AC 19 ms
10,620 KB
testcase_18 AC 16 ms
9,200 KB
testcase_19 AC 17 ms
9,508 KB
testcase_20 AC 22 ms
11,896 KB
testcase_21 AC 17 ms
9,568 KB
testcase_22 AC 13 ms
7,832 KB
testcase_23 AC 13 ms
7,776 KB
testcase_24 AC 14 ms
7,924 KB
testcase_25 AC 12 ms
7,912 KB
testcase_26 AC 12 ms
7,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
print(' '.join([str(n-i) for i in range(n+1>>1)]))
0