結果

問題 No.312 置換処理
ユーザー yansi819yansi819
提出日時 2024-05-21 08:48:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 59,120 KB
最終ジャッジ日時 2024-12-20 18:03:48
合計ジャッジ時間 3,915 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
57,448 KB
testcase_01 AC 52 ms
57,508 KB
testcase_02 AC 56 ms
57,716 KB
testcase_03 AC 55 ms
57,512 KB
testcase_04 AC 40 ms
53,576 KB
testcase_05 AC 59 ms
58,508 KB
testcase_06 AC 50 ms
58,296 KB
testcase_07 AC 54 ms
58,672 KB
testcase_08 AC 54 ms
57,516 KB
testcase_09 AC 47 ms
58,200 KB
testcase_10 AC 47 ms
57,948 KB
testcase_11 AC 54 ms
58,504 KB
testcase_12 AC 49 ms
57,432 KB
testcase_13 AC 53 ms
58,588 KB
testcase_14 AC 52 ms
58,144 KB
testcase_15 AC 48 ms
59,120 KB
testcase_16 AC 46 ms
57,104 KB
testcase_17 AC 52 ms
57,392 KB
testcase_18 AC 51 ms
59,096 KB
testcase_19 AC 54 ms
57,928 KB
testcase_20 AC 56 ms
57,672 KB
testcase_21 AC 55 ms
57,656 KB
testcase_22 AC 40 ms
52,500 KB
testcase_23 AC 38 ms
52,736 KB
testcase_24 AC 38 ms
53,348 KB
testcase_25 AC 38 ms
53,548 KB
testcase_26 AC 41 ms
52,520 KB
testcase_27 AC 38 ms
52,588 KB
testcase_28 AC 40 ms
52,468 KB
testcase_29 AC 39 ms
54,216 KB
testcase_30 AC 45 ms
57,708 KB
testcase_31 AC 45 ms
57,328 KB
testcase_32 AC 43 ms
57,724 KB
testcase_33 AC 45 ms
58,796 KB
testcase_34 AC 47 ms
58,324 KB
testcase_35 AC 46 ms
58,168 KB
testcase_36 AC 43 ms
52,784 KB
testcase_37 AC 38 ms
53,088 KB
testcase_38 AC 39 ms
52,308 KB
testcase_39 AC 46 ms
58,532 KB
testcase_40 AC 43 ms
58,192 KB
testcase_41 AC 40 ms
53,484 KB
testcase_42 AC 44 ms
58,528 KB
testcase_43 AC 39 ms
52,684 KB
testcase_44 AC 41 ms
53,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def divisors(N):
    res = []
    for i in range(1, int(N ** 0.5) + 1):
        if N % i == 0:
            res.append(i)
            if i * i != N:
                res.append(N // i)
    res.sort()
    return res

div = divisors(N)
for d in div:
    if d > 2:
        print(d)
        exit()
 
0