結果

問題 No.3029 素因数
ユーザー kokoa1046kokoa1046
提出日時 2017-10-11 12:48:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 777 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-28 15:52:53
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
10,624 KB
testcase_01 AC 113 ms
10,752 KB
testcase_02 AC 111 ms
10,880 KB
testcase_03 AC 113 ms
11,008 KB
testcase_04 AC 108 ms
10,752 KB
testcase_05 AC 115 ms
10,752 KB
testcase_06 AC 110 ms
10,752 KB
testcase_07 AC 112 ms
10,880 KB
testcase_08 AC 111 ms
10,752 KB
testcase_09 AC 118 ms
10,752 KB
testcase_10 AC 121 ms
10,752 KB
testcase_11 AC 112 ms
10,880 KB
testcase_12 AC 108 ms
10,880 KB
testcase_13 AC 108 ms
10,880 KB
testcase_14 WA -
testcase_15 AC 114 ms
10,752 KB
testcase_16 AC 116 ms
10,880 KB
testcase_17 AC 120 ms
10,752 KB
testcase_18 AC 115 ms
10,752 KB
testcase_19 WA -
testcase_20 AC 110 ms
10,880 KB
testcase_21 AC 110 ms
10,624 KB
testcase_22 AC 115 ms
10,752 KB
testcase_23 AC 121 ms
10,752 KB
testcase_24 AC 112 ms
10,752 KB
testcase_25 AC 107 ms
10,752 KB
testcase_26 AC 110 ms
10,752 KB
testcase_27 AC 114 ms
10,624 KB
testcase_28 WA -
testcase_29 AC 109 ms
10,624 KB
testcase_30 AC 106 ms
10,752 KB
testcase_31 AC 113 ms
10,752 KB
testcase_32 AC 117 ms
10,880 KB
testcase_33 AC 108 ms
10,752 KB
testcase_34 AC 113 ms
10,880 KB
testcase_35 AC 112 ms
10,752 KB
testcase_36 AC 110 ms
10,752 KB
testcase_37 WA -
testcase_38 AC 113 ms
10,752 KB
testcase_39 AC 112 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Here your code !

def factorization(n):
    def factor_sub(n, m):
        c = 0
        while n % m == 0:
            c += 1
            n /= m
        n=n
        return c, n
    #
    buff = []
    c, m = factor_sub(n, 2)
    if c > 0: buff.append((2, c))
    c, m = factor_sub(m, 3)
    if c > 0: buff.append((3, c))
    x = 5
    while m >= x * x:
        c, m = factor_sub(m, x)
        if c > 0: buff.append((x, c))
        if x % 6 == 5:
            x += 2
        else:
            x += 4
    if m > 1: buff.append((int(m), 1))
    return buff

ans=max(factorization(2618041128726310729980397695726420305416084208683943858026180411287263107299803976957264203054160842086839438580))[0]%int(input())%2
if ans==0:
    print("even")
else:
    print("odd")
0