結果

問題 No.1224 I hate Sqrt Inequality
ユーザー 遭難者遭難者
提出日時 2020-10-13 11:56:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-07-20 18:24:33
合計ジャッジ時間 5,481 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,132 KB
testcase_01 AC 132 ms
41,256 KB
testcase_02 AC 132 ms
41,144 KB
testcase_03 AC 131 ms
41,388 KB
testcase_04 AC 132 ms
41,144 KB
testcase_05 AC 131 ms
41,144 KB
testcase_06 AC 133 ms
41,032 KB
testcase_07 AC 132 ms
40,952 KB
testcase_08 AC 132 ms
41,020 KB
testcase_09 AC 133 ms
41,348 KB
testcase_10 AC 131 ms
41,200 KB
testcase_11 AC 132 ms
41,128 KB
testcase_12 AC 131 ms
41,540 KB
testcase_13 AC 132 ms
40,948 KB
testcase_14 AC 135 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		long a = Long.parseLong(sc.next());
		long b = Long.parseLong(sc.next());
		long c = a % b;
		long e = b;
		while(c != 0){
			a = b;
			b = c;
			c = a % b;
		}
		e /= b;
		while(e % 2 == 0) e /= 2;
		while(e % 5 == 0) e /= 5;
		if(e != 1) ou.println("Yes");
		else ou.println("No");
		ou.flush();
		sc.close();
	}
}
0