結果

問題 No.312 置換処理
ユーザー FromBooskaFromBooska
提出日時 2023-02-23 20:27:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 59,384 KB
最終ジャッジ日時 2024-07-23 14:29:27
合計ジャッジ時間 4,091 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
57,828 KB
testcase_01 AC 51 ms
58,096 KB
testcase_02 AC 55 ms
58,848 KB
testcase_03 AC 55 ms
59,384 KB
testcase_04 AC 38 ms
53,876 KB
testcase_05 AC 55 ms
58,572 KB
testcase_06 AC 48 ms
58,804 KB
testcase_07 AC 53 ms
59,188 KB
testcase_08 AC 51 ms
59,176 KB
testcase_09 AC 45 ms
58,668 KB
testcase_10 AC 45 ms
58,240 KB
testcase_11 AC 51 ms
57,668 KB
testcase_12 AC 50 ms
58,856 KB
testcase_13 AC 54 ms
58,448 KB
testcase_14 AC 49 ms
58,836 KB
testcase_15 AC 48 ms
57,576 KB
testcase_16 AC 45 ms
57,336 KB
testcase_17 AC 52 ms
58,436 KB
testcase_18 AC 52 ms
57,636 KB
testcase_19 AC 54 ms
57,464 KB
testcase_20 AC 56 ms
57,320 KB
testcase_21 AC 56 ms
58,356 KB
testcase_22 AC 38 ms
53,272 KB
testcase_23 AC 38 ms
53,400 KB
testcase_24 AC 38 ms
52,496 KB
testcase_25 AC 39 ms
52,660 KB
testcase_26 AC 37 ms
52,396 KB
testcase_27 AC 38 ms
53,336 KB
testcase_28 AC 38 ms
52,796 KB
testcase_29 AC 38 ms
52,016 KB
testcase_30 AC 43 ms
57,916 KB
testcase_31 AC 44 ms
57,672 KB
testcase_32 AC 41 ms
57,936 KB
testcase_33 AC 44 ms
59,004 KB
testcase_34 AC 46 ms
56,976 KB
testcase_35 AC 44 ms
58,264 KB
testcase_36 AC 38 ms
52,020 KB
testcase_37 AC 38 ms
53,132 KB
testcase_38 AC 37 ms
52,316 KB
testcase_39 AC 45 ms
57,416 KB
testcase_40 AC 41 ms
57,740 KB
testcase_41 AC 38 ms
52,816 KB
testcase_42 AC 41 ms
58,580 KB
testcase_43 AC 38 ms
52,604 KB
testcase_44 AC 37 ms
52,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

N = int(input())
divs = divisors(N)
for d in divs:
    if d > 2:
        print(d)
        break
0