結果

問題 No.1114 足し算盆に返らず
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-20 21:54:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 79 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 86,860 KB
実行使用メモリ 80,324 KB
最終ジャッジ日時 2023-08-26 01:57:15
合計ジャッジ時間 9,357 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
80,324 KB
testcase_01 AC 75 ms
80,164 KB
testcase_02 AC 73 ms
80,068 KB
testcase_03 AC 77 ms
79,040 KB
testcase_04 AC 74 ms
80,248 KB
testcase_05 AC 74 ms
78,056 KB
testcase_06 AC 75 ms
80,056 KB
testcase_07 AC 77 ms
80,316 KB
testcase_08 AC 72 ms
78,576 KB
testcase_09 AC 70 ms
77,980 KB
testcase_10 AC 71 ms
78,220 KB
testcase_11 AC 70 ms
76,668 KB
testcase_12 AC 74 ms
78,832 KB
testcase_13 AC 73 ms
80,304 KB
testcase_14 AC 69 ms
76,792 KB
testcase_15 AC 72 ms
77,596 KB
testcase_16 AC 71 ms
78,300 KB
testcase_17 AC 70 ms
78,700 KB
testcase_18 AC 68 ms
76,652 KB
testcase_19 AC 73 ms
77,644 KB
testcase_20 AC 75 ms
80,176 KB
testcase_21 AC 70 ms
77,476 KB
testcase_22 AC 63 ms
71,256 KB
testcase_23 AC 62 ms
71,348 KB
testcase_24 AC 63 ms
71,400 KB
testcase_25 AC 60 ms
71,480 KB
testcase_26 AC 60 ms
71,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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