結果

問題 No.1114 足し算盆に返らず
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-17 21:31:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-05-07 07:10:18
合計ジャッジ時間 16,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
82,748 KB
testcase_01 AC 60 ms
82,816 KB
testcase_02 AC 62 ms
82,048 KB
testcase_03 AC 57 ms
76,672 KB
testcase_04 AC 59 ms
81,408 KB
testcase_05 AC 53 ms
71,680 KB
testcase_06 AC 60 ms
81,536 KB
testcase_07 AC 59 ms
81,408 KB
testcase_08 AC 54 ms
73,728 KB
testcase_09 AC 52 ms
71,424 KB
testcase_10 AC 53 ms
73,344 KB
testcase_11 AC 46 ms
62,848 KB
testcase_12 AC 56 ms
75,392 KB
testcase_13 AC 60 ms
82,176 KB
testcase_14 AC 46 ms
64,384 KB
testcase_15 AC 51 ms
69,888 KB
testcase_16 AC 53 ms
72,448 KB
testcase_17 AC 54 ms
75,776 KB
testcase_18 AC 50 ms
67,328 KB
testcase_19 AC 52 ms
69,760 KB
testcase_20 AC 61 ms
82,560 KB
testcase_21 AC 50 ms
68,864 KB
testcase_22 AC 35 ms
51,840 KB
testcase_23 AC 36 ms
51,584 KB
testcase_24 AC 34 ms
51,840 KB
testcase_25 AC 35 ms
51,584 KB
testcase_26 AC 36 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

A = set()
for i in reversed(range(1, n+1)):
    if n-i in A or n-i == i:
        break
    else:
        A.add(i)
print(*list(A))
0