結果

問題 No.882 約数倍数
ユーザー GrenacheGrenache
提出日時 2019-09-13 22:46:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 500 ms
コード長 664 bytes
コンパイル時間 3,990 ms
コンパイル使用メモリ 75,244 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-07-04 10:08:34
合計ジャッジ時間 6,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,228 KB
testcase_01 AC 133 ms
41,156 KB
testcase_02 AC 138 ms
41,584 KB
testcase_03 AC 136 ms
41,392 KB
testcase_04 AC 134 ms
41,180 KB
testcase_05 AC 136 ms
41,368 KB
testcase_06 AC 135 ms
41,396 KB
testcase_07 AC 136 ms
41,536 KB
testcase_08 AC 133 ms
41,400 KB
testcase_09 AC 132 ms
41,204 KB
testcase_10 AC 120 ms
40,204 KB
testcase_11 AC 136 ms
41,232 KB
testcase_12 AC 135 ms
41,228 KB
testcase_13 AC 135 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder882 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();
		int b = sc.nextInt();

		for (int d = 1; d <= a; d++) {
			if (a % d == 0 && d % b == 0) {
				pr.println("YES");
				return;
			}
		}

		pr.println("NO");
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0