結果
| 問題 | No.312 置換処理 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-06-08 13:21:18 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 243 bytes |
| 記録 | |
| コンパイル時間 | 544 ms |
| コンパイル使用メモリ | 63,856 KB |
| 実行使用メモリ | 13,760 KB |
| 最終ジャッジ日時 | 2024-06-30 10:39:07 |
| 合計ジャッジ時間 | 4,529 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 1 -- * 43 |
ソースコード
#include <iostream>
#include <stdio.h>
using namespace std;
typedef long long LL;
using namespace std;
int main(int argc, char* argv[])
{
LL N;
cin>>N;
for (LL i=3;i<=N;i++){
if (N%i==0){
cout<<i<<endl;
return 0;
}
}
return 0;
}