結果

問題 No.1114 足し算盆に返らず
ユーザー raven7959raven7959
提出日時 2021-08-03 21:36:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 80 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 86,940 KB
実行使用メモリ 76,760 KB
最終ジャッジ日時 2023-10-14 21:09:42
合計ジャッジ時間 13,749 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 83 ms
76,760 KB
testcase_02 AC 83 ms
76,648 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 81 ms
76,456 KB
testcase_07 AC 84 ms
76,492 KB
testcase_08 AC 82 ms
76,256 KB
testcase_09 AC 83 ms
76,068 KB
testcase_10 AC 84 ms
76,016 KB
testcase_11 WA -
testcase_12 AC 82 ms
76,120 KB
testcase_13 AC 84 ms
76,412 KB
testcase_14 AC 82 ms
75,648 KB
testcase_15 WA -
testcase_16 AC 82 ms
76,260 KB
testcase_17 AC 83 ms
76,288 KB
testcase_18 WA -
testcase_19 AC 81 ms
75,772 KB
testcase_20 AC 85 ms
76,656 KB
testcase_21 WA -
testcase_22 AC 78 ms
71,420 KB
testcase_23 WA -
testcase_24 AC 75 ms
71,384 KB
testcase_25 WA -
testcase_26 AC 78 ms
71,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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