結果

問題 No.1114 足し算盆に返らず
ユーザー ryo_nryo_n
提出日時 2020-07-17 22:23:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 10,540 KB
実行使用メモリ 11,036 KB
最終ジャッジ日時 2023-08-20 01:54:45
合計ジャッジ時間 6,986 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
10,836 KB
testcase_01 AC 39 ms
10,900 KB
testcase_02 AC 39 ms
11,036 KB
testcase_03 AC 34 ms
10,440 KB
testcase_04 AC 37 ms
10,588 KB
testcase_05 AC 27 ms
9,752 KB
testcase_06 AC 38 ms
10,864 KB
testcase_07 AC 37 ms
10,976 KB
testcase_08 AC 30 ms
9,800 KB
testcase_09 AC 27 ms
9,700 KB
testcase_10 AC 29 ms
9,760 KB
testcase_11 AC 17 ms
8,548 KB
testcase_12 AC 31 ms
9,916 KB
testcase_13 AC 39 ms
10,948 KB
testcase_14 AC 19 ms
8,608 KB
testcase_15 AC 25 ms
9,212 KB
testcase_16 AC 28 ms
9,636 KB
testcase_17 AC 32 ms
10,144 KB
testcase_18 AC 23 ms
9,060 KB
testcase_19 AC 25 ms
9,340 KB
testcase_20 AC 39 ms
10,868 KB
testcase_21 AC 25 ms
9,108 KB
testcase_22 AC 16 ms
7,844 KB
testcase_23 AC 15 ms
7,856 KB
testcase_24 AC 15 ms
7,824 KB
testcase_25 AC 16 ms
7,828 KB
testcase_26 AC 15 ms
7,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 8)

input = sys.stdin.readline


def main():
    N = int(input())

    ans = []
    for i in range(int(N / 2 + 1), N + 1):
        ans.append(i)

    print(*ans)


if __name__ == '__main__':
    main()

0