結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-07-13 00:41:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 23 ms / 1,000 ms
コード長 577 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 105,484 KB
実行使用メモリ 26,708 KB
最終ジャッジ日時 2024-10-04 19:14:15
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
23,776 KB
testcase_01 AC 22 ms
26,104 KB
testcase_02 AC 23 ms
26,708 KB
testcase_03 AC 23 ms
24,724 KB
testcase_04 AC 21 ms
24,880 KB
testcase_05 AC 22 ms
24,736 KB
testcase_06 AC 20 ms
23,896 KB
testcase_07 AC 23 ms
24,068 KB
testcase_08 AC 23 ms
26,640 KB
testcase_09 AC 22 ms
25,860 KB
testcase_10 AC 21 ms
23,936 KB
testcase_11 AC 22 ms
24,532 KB
testcase_12 AC 20 ms
23,900 KB
testcase_13 AC 21 ms
25,940 KB
testcase_14 AC 20 ms
24,064 KB
testcase_15 AC 20 ms
25,860 KB
testcase_16 AC 21 ms
24,068 KB
testcase_17 AC 23 ms
24,884 KB
testcase_18 AC 22 ms
24,608 KB
testcase_19 AC 21 ms
25,988 KB
testcase_20 AC 21 ms
23,904 KB
testcase_21 AC 21 ms
26,116 KB
testcase_22 AC 20 ms
21,684 KB
testcase_23 AC 20 ms
25,984 KB
testcase_24 AC 20 ms
24,160 KB
testcase_25 AC 20 ms
24,112 KB
testcase_26 AC 21 ms
24,188 KB
testcase_27 AC 20 ms
23,940 KB
testcase_28 AC 21 ms
23,896 KB
testcase_29 AC 19 ms
24,064 KB
testcase_30 AC 21 ms
23,852 KB
testcase_31 AC 20 ms
23,904 KB
testcase_32 AC 19 ms
21,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class No211{
    static void Main(){
        var a=Int32.Parse(Console.ReadLine());
        if(a==12||a==18||a==20||a==24||a==30){Console.WriteLine(0.0555555555555554);}
        else if(a==8||a==16
                ||a==27||a==36
                ||a==40||a==45||a==50||a==60
                ||a==28||a==42||a==56||a==63||a==70||a==84
                ||a==44||a==66||a==88||a==99||a==110||a==121
                ||a==52||a==78||a==104||a==117||a==130||a==156){Console.WriteLine(0.0277777777777777778);}
        else{Console.WriteLine(0.00000000000000000);}
    }
}
0