結果
問題 | No.414 衝動 |
ユーザー | hiro1729 |
提出日時 | 2024-02-23 10:52:59 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 91 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 82,976 KB |
実行使用メモリ | 65,056 KB |
最終ジャッジ日時 | 2024-09-29 05:00:20 |
合計ジャッジ時間 | 3,363 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
64,612 KB |
testcase_01 | AC | 37 ms
52,320 KB |
testcase_02 | AC | 37 ms
52,104 KB |
testcase_03 | AC | 52 ms
58,276 KB |
testcase_04 | AC | 36 ms
53,060 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
M = int(input()) for i in range(2, M): if M % i == 0: exit(print(i, M // i)) print(1, M)