結果
問題 | No.136 Yet Another GCD Problem |
ユーザー | tenten |
提出日時 | 2020-11-17 20:31:23 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 567 bytes |
コンパイル時間 | 2,117 ms |
コンパイル使用メモリ | 77,140 KB |
実行使用メモリ | 56,272 KB |
最終ジャッジ日時 | 2024-07-23 08:27:13 |
合計ジャッジ時間 | 8,822 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
54,260 KB |
testcase_01 | AC | 129 ms
54,316 KB |
testcase_02 | AC | 128 ms
54,288 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 120 ms
53,232 KB |
testcase_09 | AC | 129 ms
54,112 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 135 ms
54,148 KB |
testcase_24 | WA | - |
testcase_25 | AC | 126 ms
54,516 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 125 ms
54,104 KB |
testcase_32 | WA | - |
testcase_33 | AC | 127 ms
54,000 KB |
testcase_34 | AC | 128 ms
53,944 KB |
testcase_35 | AC | 131 ms
54,100 KB |
testcase_36 | AC | 114 ms
52,996 KB |
testcase_37 | AC | 126 ms
53,816 KB |
testcase_38 | AC | 127 ms
54,180 KB |
testcase_39 | AC | 125 ms
53,900 KB |
testcase_40 | AC | 126 ms
53,868 KB |
testcase_41 | AC | 124 ms
54,152 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); int ans = 1; for (int i = 2; i <= Math.sqrt(n); i++) { if (n % i == 0) { if (n / i < k) { break; } ans = i; if (i >= k) { ans = n / i; break; } } } System.out.println(ans); } }