結果

問題 No.1224 I hate Sqrt Inequality
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-16 14:50:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 3,841 ms
コンパイル使用メモリ 76,668 KB
実行使用メモリ 54,880 KB
最終ジャッジ日時 2024-04-25 13:25:34
合計ジャッジ時間 6,583 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
54,408 KB
testcase_01 AC 161 ms
54,608 KB
testcase_02 AC 159 ms
54,352 KB
testcase_03 AC 157 ms
54,492 KB
testcase_04 WA -
testcase_05 AC 155 ms
54,392 KB
testcase_06 WA -
testcase_07 AC 158 ms
54,800 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 157 ms
54,572 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	double a = sc.nextDouble();
	    	double b = sc.nextDouble();
	    	sc.close();

	    	String  str = a / b + " ";

	    	System.out.println(str.length() == 19? "Yes" : "No");
	    	}

	    }

0