結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
54,252 KB
testcase_01 AC 143 ms
54,260 KB
testcase_02 AC 142 ms
54,392 KB
testcase_03 AC 134 ms
53,696 KB
testcase_04 AC 143 ms
54,388 KB
testcase_05 AC 141 ms
54,064 KB
testcase_06 WA -
testcase_07 AC 143 ms
54,480 KB
testcase_08 AC 144 ms
54,444 KB
testcase_09 AC 143 ms
54,512 KB
testcase_10 AC 151 ms
54,432 KB
testcase_11 AC 149 ms
54,220 KB
testcase_12 WA -
testcase_13 AC 129 ms
53,492 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