結果
| 問題 | No.312 置換処理 |
| コンテスト | |
| ユーザー |
Yang33
|
| 提出日時 | 2016-01-07 14:00:30 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 318 bytes |
| 記録 | |
| コンパイル時間 | 326 ms |
| コンパイル使用メモリ | 72,136 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-04-07 23:54:22 |
| 合計ジャッジ時間 | 4,091 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 1 -- * 43 |
コンパイルメッセージ
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/ostream:42,
from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/iostream:43,
from main.cpp:1:
In member function 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long int) [with _CharT = char; _Traits = std::char_traits<char>]',
inlined from 'int main()' at main.cpp:23:10:
/home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/bits/ostream.h:212:25: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized]
212 | { return _M_insert(__n); }
| ~~~~~~~~~^~~~~
main.cpp: In function 'int main()':
main.cpp:5:29: note: 'ans' was declared here
5 | long long int i, n, ans;
| ^~~
ソースコード
#include<iostream>
using namespace std;
int main(void)
{
long long int i, n, ans;
cin >> n;
if (n % 3 == 0) {
cout << 3 << endl;
return 0;
}
if (n % 4 == 0) {
cout << 4 << endl;
return 0;
}
for (i = 5; i <= n; i+=2) {
if (n%i == 0) {
ans = i;
break;
}
}
cout << ans << endl;
return 0;
}
Yang33