結果

問題 No.312 置換処理
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-09-16 22:50:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 59,152 KB
最終ジャッジ日時 2024-11-15 12:37:50
合計ジャッジ時間 3,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
56,852 KB
testcase_01 AC 51 ms
58,296 KB
testcase_02 AC 56 ms
57,136 KB
testcase_03 AC 57 ms
58,132 KB
testcase_04 AC 38 ms
52,012 KB
testcase_05 AC 58 ms
58,300 KB
testcase_06 AC 50 ms
57,536 KB
testcase_07 AC 55 ms
58,236 KB
testcase_08 AC 53 ms
57,576 KB
testcase_09 AC 47 ms
58,728 KB
testcase_10 AC 48 ms
57,944 KB
testcase_11 AC 54 ms
57,920 KB
testcase_12 AC 50 ms
58,348 KB
testcase_13 AC 55 ms
59,152 KB
testcase_14 AC 51 ms
57,912 KB
testcase_15 AC 50 ms
57,688 KB
testcase_16 AC 47 ms
58,072 KB
testcase_17 AC 52 ms
56,912 KB
testcase_18 AC 52 ms
57,952 KB
testcase_19 AC 54 ms
57,924 KB
testcase_20 AC 56 ms
58,104 KB
testcase_21 AC 56 ms
59,044 KB
testcase_22 AC 38 ms
54,244 KB
testcase_23 AC 38 ms
53,020 KB
testcase_24 AC 39 ms
53,176 KB
testcase_25 AC 39 ms
52,944 KB
testcase_26 AC 39 ms
53,256 KB
testcase_27 AC 39 ms
52,924 KB
testcase_28 AC 39 ms
52,348 KB
testcase_29 AC 39 ms
51,624 KB
testcase_30 AC 43 ms
57,200 KB
testcase_31 AC 43 ms
57,948 KB
testcase_32 AC 43 ms
58,932 KB
testcase_33 AC 45 ms
57,720 KB
testcase_34 AC 46 ms
58,852 KB
testcase_35 AC 46 ms
58,604 KB
testcase_36 AC 39 ms
53,296 KB
testcase_37 AC 40 ms
52,676 KB
testcase_38 AC 38 ms
52,516 KB
testcase_39 AC 46 ms
57,452 KB
testcase_40 AC 42 ms
57,752 KB
testcase_41 AC 38 ms
52,028 KB
testcase_42 AC 41 ms
58,272 KB
testcase_43 AC 39 ms
52,708 KB
testcase_44 AC 38 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(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())
L = div(n)
for x in L:
    if not(0 <= x <= 2):
        ans = x
        break
print(ans)
0