結果

問題 No.1180 無限和
ユーザー 遭難者遭難者
提出日時 2020-07-28 16:04:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 303 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 73,516 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-10-15 06:10:09
合計ジャッジ時間 7,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,208 KB
testcase_01 AC 119 ms
40,956 KB
testcase_02 AC 121 ms
41,224 KB
testcase_03 AC 120 ms
41,168 KB
testcase_04 AC 109 ms
40,156 KB
testcase_05 AC 126 ms
41,440 KB
testcase_06 AC 110 ms
39,932 KB
testcase_07 AC 113 ms
40,912 KB
testcase_08 AC 118 ms
41,216 KB
testcase_09 AC 107 ms
39,824 KB
testcase_10 AC 110 ms
40,032 KB
testcase_11 AC 120 ms
41,280 KB
testcase_12 AC 125 ms
41,180 KB
testcase_13 AC 120 ms
41,088 KB
testcase_14 AC 120 ms
41,412 KB
testcase_15 AC 107 ms
39,932 KB
testcase_16 AC 110 ms
40,192 KB
testcase_17 AC 122 ms
41,420 KB
testcase_18 AC 111 ms
39,692 KB
testcase_19 AC 123 ms
41,120 KB
testcase_20 AC 119 ms
40,960 KB
testcase_21 AC 122 ms
40,848 KB
testcase_22 AC 108 ms
39,884 KB
testcase_23 AC 120 ms
40,948 KB
testcase_24 AC 123 ms
41,068 KB
testcase_25 AC 125 ms
41,116 KB
testcase_26 AC 107 ms
40,172 KB
testcase_27 AC 106 ms
39,880 KB
testcase_28 AC 114 ms
41,168 KB
testcase_29 AC 124 ms
41,120 KB
testcase_30 AC 127 ms
41,076 KB
testcase_31 AC 109 ms
39,964 KB
testcase_32 AC 104 ms
39,660 KB
testcase_33 AC 122 ms
41,248 KB
testcase_34 AC 102 ms
40,036 KB
testcase_35 AC 122 ms
41,216 KB
testcase_36 AC 120 ms
41,012 KB
testcase_37 AC 118 ms
40,916 KB
testcase_38 AC 122 ms
41,428 KB
testcase_39 AC 109 ms
39,892 KB
testcase_40 AC 121 ms
40,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        sc.close();
        double s = Math.PI * Math.PI / 6;
        s = Math.pow(s , n) * 1.0 / n;
        System.out.println((int) s);
    }
}
0