結果
| 問題 | No.809 かけ算 |
| コンテスト | |
| ユーザー |
monburan_0401
|
| 提出日時 | 2019-05-04 02:35:30 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 153 bytes |
| 記録 | |
| コンパイル時間 | 561 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 21,628 KB |
| 最終ジャッジ日時 | 2026-06-06 07:49:46 |
| 合計ジャッジ時間 | 4,624 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | TLE * 1 -- * 5 |
ソースコード
s = int(input())
if s%2 == 0:
t = int(s/2)
u = 2
else:
u = 3
while s%u != 0:
u += 2
t = int(s/u)
print(f"{t} {u}")
monburan_0401