結果
問題 | No.136 Yet Another GCD Problem |
ユーザー |
![]() |
提出日時 | 2015-01-30 19:02:12 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 360 bytes |
コンパイル時間 | 578 ms |
コンパイル使用メモリ | 72,656 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-23 04:27:02 |
合計ジャッジ時間 | 1,744 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 39 |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> #include <set> using namespace std; int main(){ int n,k; cin >> n >> k; int ans = 1; for(int i=1; i<=n/2; i++){ if(n%i == 0){ ans = max(ans, i); } } cout << ans << endl; return 0; }