結果
| 問題 |
No.414 衝動
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-23 13:13:11 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 59 ms / 1,000 ms |
| コード長 | 118 bytes |
| コンパイル時間 | 268 ms |
| コンパイル使用メモリ | 82,292 KB |
| 実行使用メモリ | 57,856 KB |
| 最終ジャッジ日時 | 2024-11-29 12:09:03 |
| 合計ジャッジ時間 | 1,920 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
M = int(input())
for i in range(2,int(M**(1/2))+1):
if M % i == 0:
print(i,M//i)
exit()
print(1,M)