結果

問題 No.1224 I hate Sqrt Inequality
ユーザー ks2mks2m
提出日時 2020-09-11 21:31:32
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 384 bytes
コンパイル時間 2,019 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-06-11 21:16:51
合計ジャッジ時間 4,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,028 KB
testcase_01 AC 109 ms
54,060 KB
testcase_02 AC 108 ms
54,040 KB
testcase_03 AC 101 ms
52,988 KB
testcase_04 AC 100 ms
53,056 KB
testcase_05 AC 112 ms
53,912 KB
testcase_06 AC 102 ms
52,864 KB
testcase_07 AC 112 ms
53,756 KB
testcase_08 AC 115 ms
53,628 KB
testcase_09 AC 119 ms
54,360 KB
testcase_10 AC 117 ms
54,460 KB
testcase_11 AC 116 ms
53,904 KB
testcase_12 AC 120 ms
54,160 KB
testcase_13 AC 117 ms
53,912 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong();
		long b = sc.nextLong();
		sc.close();

		int cnt = 0;
		while (cnt < 100) {
			a %= b;
			if (a == 0) {
				System.out.println("No");
				return;
			}
			a *= 10;
			cnt++;
		}
		System.out.println("Yes");
	}
}
0