結果

問題 No.809 かけ算
ユーザー suzu2424__suzu2424__
提出日時 2019-05-11 15:35:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 353 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 10,548 KB
実行使用メモリ 12,556 KB
最終ジャッジ日時 2023-09-14 18:11:14
合計ジャッジ時間 3,895 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
12,556 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#! -*- coding: utf-8 -*-

def main():
    a_number = int(input())
    divisor = [0] * 2
    for each in range(2, 10**9):
    	if a_number % each == 0:
    		divisor[0] = each
    		break
    divisor[1] = int(a_number / divisor[0])
    print(divisor[0], divisor[1]) 

if __name__ == '__main__':
    import sys
    sys.exit(main())
0