結果

問題 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
コンパイル時間 140 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,572 KB
最終ジャッジ日時 2024-07-02 01:14:25
合計ジャッジ時間 3,712 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
16,128 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