結果
問題 | No.136 Yet Another GCD Problem |
ユーザー |
|
提出日時 | 2019-01-14 07:00:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 301 bytes |
コンパイル時間 | 1,457 ms |
コンパイル使用メモリ | 166,524 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-31 01:23:06 |
合計ジャッジ時間 | 2,766 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 39 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, k; cin >> n >> k; int ans = 0; for(int i = 2; i <= k; i++) { for(int j = n / i; j >= 1; j--) { if(n % j == 0) { ans = max(ans, j); } } } cout << ans << endl; return 0; }