結果
| 問題 |
No.809 かけ算
|
| コンテスト | |
| ユーザー |
monburan_0401
|
| 提出日時 | 2019-05-04 02:35:30 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 153 bytes |
| コンパイル時間 | 570 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 20,608 KB |
| 最終ジャッジ日時 | 2025-01-02 21:34:51 |
| 合計ジャッジ時間 | 7,413 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 4 TLE * 2 |
ソースコード
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