結果

問題 No.1114 足し算盆に返らず
ユーザー raven7959raven7959
提出日時 2021-08-03 21:36:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 80 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 62,652 KB
最終ジャッジ日時 2024-09-16 14:57:22
合計ジャッジ時間 18,338 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
61,864 KB
testcase_02 AC 43 ms
61,760 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 43 ms
60,448 KB
testcase_07 AC 43 ms
60,436 KB
testcase_08 AC 40 ms
59,296 KB
testcase_09 AC 41 ms
59,128 KB
testcase_10 AC 40 ms
59,296 KB
testcase_11 WA -
testcase_12 AC 41 ms
60,096 KB
testcase_13 AC 44 ms
62,652 KB
testcase_14 AC 40 ms
58,048 KB
testcase_15 WA -
testcase_16 AC 42 ms
60,148 KB
testcase_17 AC 42 ms
61,260 KB
testcase_18 WA -
testcase_19 AC 41 ms
59,092 KB
testcase_20 AC 43 ms
60,480 KB
testcase_21 WA -
testcase_22 AC 36 ms
52,500 KB
testcase_23 WA -
testcase_24 AC 36 ms
51,928 KB
testcase_25 WA -
testcase_26 AC 37 ms
53,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ANS=[str(i) for i in range(N,(N+1)//2-1,-1)]
print(" ".join(ANS))
0