結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー curryudon08curryudon08
提出日時 2020-07-21 18:18:46
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 724 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 113,536 KB
実行使用メモリ 27,636 KB
最終ジャッジ日時 2024-06-09 15:20:13
合計ジャッジ時間 3,543 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
27,100 KB
testcase_01 AC 25 ms
26,844 KB
testcase_02 AC 24 ms
25,840 KB
testcase_03 AC 25 ms
27,636 KB
testcase_04 AC 25 ms
23,600 KB
testcase_05 AC 25 ms
25,972 KB
testcase_06 AC 23 ms
24,944 KB
testcase_07 AC 22 ms
24,948 KB
testcase_08 AC 23 ms
25,720 KB
testcase_09 AC 22 ms
25,188 KB
testcase_10 AC 22 ms
24,672 KB
testcase_11 AC 26 ms
25,716 KB
testcase_12 AC 23 ms
24,880 KB
testcase_13 AC 23 ms
26,844 KB
testcase_14 AC 23 ms
24,796 KB
testcase_15 AC 23 ms
24,816 KB
testcase_16 AC 23 ms
26,964 KB
testcase_17 AC 24 ms
25,852 KB
testcase_18 AC 24 ms
25,776 KB
testcase_19 AC 23 ms
25,132 KB
testcase_20 AC 22 ms
24,792 KB
testcase_21 AC 22 ms
24,684 KB
testcase_22 AC 23 ms
25,052 KB
testcase_23 AC 24 ms
26,852 KB
testcase_24 AC 23 ms
22,832 KB
testcase_25 AC 24 ms
25,132 KB
testcase_26 AC 23 ms
25,196 KB
testcase_27 AC 23 ms
24,824 KB
testcase_28 AC 23 ms
27,232 KB
testcase_29 AC 22 ms
22,708 KB
testcase_30 AC 22 ms
25,072 KB
testcase_31 AC 23 ms
24,812 KB
testcase_32 AC 23 ms
26,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

    using System;
    using System.Linq;

    namespace _0211
    {
        class Program
        {
            static void Main(string[] args)
            {
                var s = new int[]{2,3,5,7,11,13};
                var t = new int[]{4,6,8,9,10,12};

                var u = new int[s.Length * t.Length];
                for(var i = 0; i < s.Length; i++){
                    for(var j = 0; j < t.Length; j++){
                        u[i * 6 + j] = s[i] * t[j];
                    }
                }

                var k = int.Parse(Console.ReadLine());
                var x = u.Count(n => n == k);
                Console.WriteLine(string.Format("{0:F19}", x * 1.0 / u.Length));
            }
        }
    }
0