結果

問題 No.1622 三角形の面積
ユーザー Subaru314Subaru314
提出日時 2022-01-10 20:58:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-11-14 11:03:17
合計ジャッジ時間 3,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,028 KB
testcase_01 AC 157 ms
54,224 KB
testcase_02 AC 155 ms
54,212 KB
testcase_03 AC 155 ms
54,260 KB
testcase_04 AC 156 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  
  public static void main(String[] args){
    
    Scanner sc = new Scanner(System.in);
    
    int t = sc.nextInt();
    
    for(int i=0; i<t; i++){
      
      int r = sc.nextInt();
      double ans = 1.299038105676657*r*r;
      
      System.out.println(ans);
      
    }
  
  }

}
0