結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,532 KB
testcase_01 AC 143 ms
41,752 KB
testcase_02 AC 135 ms
41,584 KB
testcase_03 AC 140 ms
41,540 KB
testcase_04 AC 148 ms
41,636 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