結果

問題 No.414 衝動
ユーザー ああいいああいい
提出日時 2022-03-30 18:02:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 120 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 72,508 KB
最終ジャッジ日時 2024-11-15 08:40:31
合計ジャッジ時間 22,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 38 ms
59,244 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 38 ms
59,136 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 38 ms
58,856 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 38 ms
60,732 KB
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

M = int(input())

import sys
i = 2
while i * i <= M:
    if M % i == 0:
        print(i,M//i)
        exit()
print(1,M)
0