結果

問題 No.1114 足し算盆に返らず
ユーザー uni_pythonuni_python
提出日時 2020-07-19 22:04:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 64,384 KB
最終ジャッジ日時 2024-05-09 21:24:52
合計ジャッジ時間 21,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
64,000 KB
testcase_01 AC 55 ms
64,384 KB
testcase_02 AC 53 ms
64,000 KB
testcase_03 AC 59 ms
62,976 KB
testcase_04 AC 55 ms
64,128 KB
testcase_05 AC 51 ms
61,568 KB
testcase_06 AC 53 ms
63,872 KB
testcase_07 AC 54 ms
64,128 KB
testcase_08 AC 55 ms
61,696 KB
testcase_09 AC 57 ms
61,056 KB
testcase_10 AC 58 ms
61,824 KB
testcase_11 AC 49 ms
58,496 KB
testcase_12 AC 58 ms
62,464 KB
testcase_13 AC 61 ms
64,256 KB
testcase_14 AC 53 ms
59,392 KB
testcase_15 AC 56 ms
60,544 KB
testcase_16 AC 58 ms
61,568 KB
testcase_17 AC 55 ms
62,208 KB
testcase_18 AC 55 ms
60,416 KB
testcase_19 AC 56 ms
61,056 KB
testcase_20 AC 59 ms
64,384 KB
testcase_21 AC 56 ms
60,416 KB
testcase_22 AC 47 ms
51,968 KB
testcase_23 AC 48 ms
51,456 KB
testcase_24 AC 48 ms
51,456 KB
testcase_25 AC 48 ms
51,968 KB
testcase_26 AC 47 ms
51,712 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