結果

問題 No.1224 I hate Sqrt Inequality
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-16 14:53:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 358 bytes
コンパイル時間 4,919 ms
コンパイル使用メモリ 76,644 KB
実行使用メモリ 42,124 KB
最終ジャッジ日時 2024-11-08 00:27:12
合計ジャッジ時間 6,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,056 KB
testcase_01 AC 159 ms
42,004 KB
testcase_02 AC 149 ms
41,496 KB
testcase_03 AC 143 ms
41,128 KB
testcase_04 AC 160 ms
41,740 KB
testcase_05 AC 159 ms
41,716 KB
testcase_06 WA -
testcase_07 AC 143 ms
41,212 KB
testcase_08 AC 142 ms
41,384 KB
testcase_09 AC 160 ms
41,980 KB
testcase_10 AC 145 ms
41,468 KB
testcase_11 AC 153 ms
42,124 KB
testcase_12 WA -
testcase_13 AC 159 ms
42,068 KB
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