結果

問題 No.1114 足し算盆に返らず
ユーザー raven7959raven7959
提出日時 2021-08-03 21:43:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 74 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 86,632 KB
実行使用メモリ 76,728 KB
最終ジャッジ日時 2023-10-14 21:10:18
合計ジャッジ時間 8,561 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
76,556 KB
testcase_01 AC 82 ms
76,728 KB
testcase_02 AC 83 ms
76,500 KB
testcase_03 AC 80 ms
76,424 KB
testcase_04 AC 83 ms
76,572 KB
testcase_05 AC 83 ms
76,220 KB
testcase_06 AC 84 ms
76,596 KB
testcase_07 AC 82 ms
76,448 KB
testcase_08 AC 82 ms
76,272 KB
testcase_09 AC 83 ms
76,244 KB
testcase_10 AC 83 ms
76,168 KB
testcase_11 AC 81 ms
75,644 KB
testcase_12 AC 81 ms
76,348 KB
testcase_13 AC 85 ms
76,724 KB
testcase_14 AC 80 ms
75,472 KB
testcase_15 AC 82 ms
75,808 KB
testcase_16 AC 84 ms
75,992 KB
testcase_17 AC 83 ms
75,964 KB
testcase_18 AC 84 ms
75,264 KB
testcase_19 AC 82 ms
75,772 KB
testcase_20 AC 84 ms
76,656 KB
testcase_21 AC 83 ms
75,724 KB
testcase_22 AC 80 ms
71,060 KB
testcase_23 AC 79 ms
71,120 KB
testcase_24 AC 77 ms
71,180 KB
testcase_25 AC 77 ms
71,304 KB
testcase_26 AC 77 ms
71,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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