結果
問題 |
No.312 置換処理
|
ユーザー |
|
提出日時 | 2017-06-25 14:44:28 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 126 bytes |
コンパイル時間 | 268 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 15,744 KB |
最終ジャッジ日時 | 2024-10-04 08:39:45 |
合計ジャッジ時間 | 3,819 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 TLE * 1 -- * 43 |
ソースコード
def main(): N = int(input()) for i in range(3, N + 1): if not N % i: break print(i) main()