結果

問題 No.1027 U+1F4A0
ユーザー joybeeeejoybeeee
提出日時 2020-05-13 21:58:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 55,828 KB
最終ジャッジ日時 2024-09-14 15:41:50
合計ジャッジ時間 6,388 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,952 KB
testcase_01 AC 134 ms
40,892 KB
testcase_02 AC 134 ms
41,308 KB
testcase_03 AC 132 ms
41,352 KB
testcase_04 AC 132 ms
41,092 KB
testcase_05 AC 132 ms
40,844 KB
testcase_06 AC 133 ms
41,428 KB
testcase_07 AC 131 ms
41,320 KB
testcase_08 AC 135 ms
41,172 KB
testcase_09 AC 136 ms
41,336 KB
testcase_10 AC 136 ms
41,184 KB
testcase_11 AC 134 ms
41,044 KB
testcase_12 AC 136 ms
41,312 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 134 ms
40,980 KB
testcase_17 AC 133 ms
41,236 KB
testcase_18 AC 135 ms
41,360 KB
testcase_19 AC 134 ms
41,336 KB
testcase_20 AC 134 ms
41,288 KB
testcase_21 AC 136 ms
41,196 KB
testcase_22 AC 118 ms
39,692 KB
testcase_23 AC 136 ms
40,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      double D1 = sc.nextInt();
      double D2 = sc.nextInt();
      double d1 = Math.sqrt(D1);
      double d2 = Math.sqrt(D2);

      int res = 0;
      if(D1 == D2 || d1 * 2 == D2) res = 4;
      else if(d1 > Math.sqrt(2) * d2 / 2 && d1 < d2) res = 8;

      System.out.println(res);
  }
}
0