結果
問題 |
No.414 衝動
|
ユーザー |
|
提出日時 | 2018-05-10 22:18:36 |
言語 | C (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 165 bytes |
コンパイル時間 | 474 ms |
コンパイル使用メモリ | 28,032 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-28 03:30:59 |
合計ジャッジ時間 | 2,937 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 TLE * 1 -- * 7 |
ソースコード
#include <stdio.h> int main(void) { long long m, i; scanf("%lld", &m); for (i = 2;; i++) if (!(m%i)) break; printf("%lld %lld", i, m / i); return 0; }