結果

問題 No.1114 足し算盆に返らず
ユーザー neterukunneterukun
提出日時 2020-07-17 22:07:22
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 80,216 KB
最終ジャッジ日時 2023-08-20 01:25:11
合計ジャッジ時間 8,474 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
80,184 KB
testcase_01 AC 90 ms
80,176 KB
testcase_02 AC 94 ms
80,040 KB
testcase_03 AC 88 ms
79,208 KB
testcase_04 AC 89 ms
79,956 KB
testcase_05 AC 86 ms
77,884 KB
testcase_06 AC 89 ms
79,996 KB
testcase_07 AC 89 ms
80,180 KB
testcase_08 AC 86 ms
78,308 KB
testcase_09 AC 86 ms
77,824 KB
testcase_10 AC 85 ms
78,280 KB
testcase_11 AC 81 ms
76,464 KB
testcase_12 AC 87 ms
78,576 KB
testcase_13 AC 88 ms
80,216 KB
testcase_14 AC 81 ms
76,664 KB
testcase_15 AC 85 ms
77,380 KB
testcase_16 AC 84 ms
78,040 KB
testcase_17 AC 87 ms
78,744 KB
testcase_18 AC 83 ms
76,484 KB
testcase_19 AC 86 ms
77,588 KB
testcase_20 AC 90 ms
79,888 KB
testcase_21 AC 85 ms
77,492 KB
testcase_22 AC 75 ms
71,212 KB
testcase_23 AC 75 ms
71,296 KB
testcase_24 AC 74 ms
71,416 KB
testcase_25 AC 72 ms
71,292 KB
testcase_26 AC 72 ms
71,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ans = []
for i in range((n + 2) // 2, n + 1):
    ans.append(i)
print(*ans)
0