結果
問題 | No.312 置換処理 |
ユーザー | h_noson |
提出日時 | 2016-03-14 13:56:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 554 bytes |
コンパイル時間 | 355 ms |
コンパイル使用メモリ | 54,516 KB |
最終ジャッジ日時 | 2024-11-14 19:35:39 |
合計ジャッジ時間 | 843 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:17:16: error: ‘sqrt’ was not declared in this scope 17 | REP (ans,3,sqrt(n)+1) { | ^~~~ main.cpp:8:36: note: in definition of macro ‘REP’ 8 | #define REP(i,s,e) for (i = s; i < e; i++) | ^
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; #define RREP(i,s,e) for (i = e-1; i >= s; i--) #define rrep(i,n) RREP(i,0,n) #define REP(i,s,e) for (i = s; i < e; i++) #define rep(i,n) REP(i,0,n) #define INF 1e8 typedef long long ll; int main() { ll ans, n; cin >> n; REP (ans,3,sqrt(n)+1) { if (n % ans == 0) { cout << ans << endl; return 0; } } if (n % 2 == 0 && n / 2 != 2) cout << n / 2 << endl; else cout << n << endl; return 0; }