結果

問題 No.1006 Share an Integer
ユーザー lloyzlloyz
提出日時 2022-05-28 14:40:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 257,684 KB
最終ジャッジ日時 2024-09-20 21:54:31
合計ジャッジ時間 7,064 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 43 ms
58,752 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 41 ms
59,392 KB
testcase_05 AC 46 ms
60,800 KB
testcase_06 AC 48 ms
61,440 KB
testcase_07 AC 47 ms
61,056 KB
testcase_08 AC 47 ms
60,800 KB
testcase_09 AC 47 ms
60,800 KB
testcase_10 AC 48 ms
60,800 KB
testcase_11 AC 338 ms
161,408 KB
testcase_12 AC 588 ms
237,096 KB
testcase_13 AC 635 ms
257,536 KB
testcase_14 AC 650 ms
257,404 KB
testcase_15 AC 528 ms
217,556 KB
testcase_16 AC 272 ms
143,744 KB
testcase_17 AC 387 ms
182,400 KB
testcase_18 AC 559 ms
217,088 KB
testcase_19 AC 530 ms
218,112 KB
testcase_20 AC 569 ms
239,872 KB
testcase_21 AC 634 ms
257,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())

C = [i for i in range(x + 1)]
for i in range(1, x + 1):
    for j in range(i, x + 1, i):
        C[j] -= 1

D = [[] for _ in range(x)]
for i in range(1, x):
    num = abs(C[i] - C[x - i])
    D[num].append((i, x - i))
for i in range(x):
    if len(D[i]) > 0:
        for a, b in D[i]:
            print(a, b)
        break
0