結果

問題 No.1224 I hate Sqrt Inequality
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-16 14:50:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 6,077 ms
コンパイル使用メモリ 76,120 KB
実行使用メモリ 41,960 KB
最終ジャッジ日時 2024-11-08 00:25:10
合計ジャッジ時間 7,236 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
40,904 KB
testcase_01 AC 151 ms
41,736 KB
testcase_02 AC 150 ms
41,736 KB
testcase_03 AC 152 ms
41,768 KB
testcase_04 WA -
testcase_05 AC 152 ms
41,560 KB
testcase_06 WA -
testcase_07 AC 151 ms
41,804 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 149 ms
41,228 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