結果

問題 No.312 置換処理
ユーザー rlangevinrlangevin
提出日時 2023-01-07 14:05:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 58,980 KB
最終ジャッジ日時 2024-12-14 13:46:54
合計ジャッジ時間 3,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
57,888 KB
testcase_01 AC 53 ms
58,164 KB
testcase_02 AC 56 ms
57,328 KB
testcase_03 AC 55 ms
57,792 KB
testcase_04 AC 40 ms
52,140 KB
testcase_05 AC 56 ms
57,980 KB
testcase_06 AC 50 ms
57,536 KB
testcase_07 AC 53 ms
57,264 KB
testcase_08 AC 54 ms
57,748 KB
testcase_09 AC 47 ms
58,120 KB
testcase_10 AC 48 ms
58,848 KB
testcase_11 AC 53 ms
58,236 KB
testcase_12 AC 49 ms
56,916 KB
testcase_13 AC 55 ms
57,912 KB
testcase_14 AC 50 ms
58,660 KB
testcase_15 AC 50 ms
57,296 KB
testcase_16 AC 46 ms
58,636 KB
testcase_17 AC 51 ms
58,736 KB
testcase_18 AC 51 ms
57,468 KB
testcase_19 AC 53 ms
58,604 KB
testcase_20 AC 55 ms
58,800 KB
testcase_21 AC 55 ms
57,788 KB
testcase_22 AC 38 ms
52,636 KB
testcase_23 AC 38 ms
52,156 KB
testcase_24 AC 38 ms
52,816 KB
testcase_25 AC 38 ms
52,612 KB
testcase_26 AC 38 ms
52,068 KB
testcase_27 AC 39 ms
53,724 KB
testcase_28 AC 37 ms
53,060 KB
testcase_29 AC 38 ms
51,940 KB
testcase_30 AC 44 ms
57,732 KB
testcase_31 AC 43 ms
58,980 KB
testcase_32 AC 43 ms
58,056 KB
testcase_33 AC 46 ms
57,812 KB
testcase_34 AC 45 ms
57,564 KB
testcase_35 AC 46 ms
57,192 KB
testcase_36 AC 38 ms
52,440 KB
testcase_37 AC 39 ms
52,208 KB
testcase_38 AC 38 ms
52,936 KB
testcase_39 AC 45 ms
58,412 KB
testcase_40 AC 42 ms
57,812 KB
testcase_41 AC 37 ms
51,752 KB
testcase_42 AC 43 ms
58,408 KB
testcase_43 AC 37 ms
51,760 KB
testcase_44 AC 40 ms
53,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(n):
    S = set([n])
    i = 2
    while i * i <= n:
        if n % i == 0:
            if i != 2:
                S.add(i)
            if n // i != 2:
                S.add(n // i)
        i += 1
    if n != 1:
        S.add(n)
    return list(S)

N = int(input())
print(min(N, min(div(N))))
0