結果

問題 No.1114 足し算盆に返らず
ユーザー uni_pythonuni_python
提出日時 2020-07-19 22:04:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 87,220 KB
実行使用メモリ 79,356 KB
最終ジャッジ日時 2023-08-22 15:40:54
合計ジャッジ時間 11,656 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
78,996 KB
testcase_01 AC 81 ms
79,288 KB
testcase_02 AC 82 ms
79,356 KB
testcase_03 AC 80 ms
78,140 KB
testcase_04 AC 81 ms
79,000 KB
testcase_05 AC 77 ms
77,032 KB
testcase_06 AC 82 ms
78,956 KB
testcase_07 AC 81 ms
79,012 KB
testcase_08 AC 80 ms
77,328 KB
testcase_09 AC 79 ms
76,848 KB
testcase_10 AC 79 ms
77,472 KB
testcase_11 AC 78 ms
75,968 KB
testcase_12 AC 78 ms
77,752 KB
testcase_13 AC 81 ms
78,956 KB
testcase_14 AC 78 ms
76,104 KB
testcase_15 AC 81 ms
76,336 KB
testcase_16 AC 77 ms
77,172 KB
testcase_17 AC 80 ms
77,732 KB
testcase_18 AC 78 ms
76,196 KB
testcase_19 AC 78 ms
76,436 KB
testcase_20 AC 83 ms
78,984 KB
testcase_21 AC 79 ms
76,156 KB
testcase_22 AC 74 ms
71,388 KB
testcase_23 AC 74 ms
71,580 KB
testcase_24 AC 75 ms
71,392 KB
testcase_25 AC 77 ms
71,436 KB
testcase_26 AC 74 ms
71,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N=I()
    ans=[]
    for i in range(N//2+1,N+1):
        ans.append(i)
    print(' '.join(map(str,ans)))


main()
0