結果

問題 No.414 衝動
ユーザー tookunn_1213tookunn_1213
提出日時 2016-08-26 22:22:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 124 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-04-25 22:49:05
合計ジャッジ時間 3,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

M = int(input())
ans = (1,M)
i = 2
while i * i <= M:
	if M % 2 == 0:
		ans = (i,M // i)
		break
	i += 1
print(ans[0],ans[1])
0