結果

問題 No.414 衝動
ユーザー ssmkzkssmkzk
提出日時 2019-03-31 16:14:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 557 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 1,414,912 KB
最終ジャッジ日時 2024-11-21 19:05:27
合計ジャッジ時間 20,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 39 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 41 ms
10,752 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 44 ms
10,624 KB
testcase_11 TLE -
testcase_12 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

M = int(input())

def SoE(x):
    if x < 2:
        return [1]
    
    l = [i for i in range(x + 1)]
    l[1] = 0
    
    for i in l:
        if i > math.sqrt(x):
            break
        if i == 0:
            continue
        for j in range(2 * i , x + 1, i):
            l[j] = 0
    
    return [i for i in l if i != 0]

l = SoE(M)

if l[-1] == M:
    print(1,M)
else:
    if M % 2 == 0:
        print(2, M // 2)
    else:
        for i in range(3, M, 2):
            if M % i == 0:
                print(i, M // i)
                break
0