結果
問題 | No.785 色食い虫 |
ユーザー | Crowea |
提出日時 | 2019-02-12 14:06:08 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 796 bytes |
コンパイル時間 | 2,388 ms |
コンパイル使用メモリ | 112,324 KB |
実行使用メモリ | 29,140 KB |
最終ジャッジ日時 | 2024-09-13 09:38:43 |
合計ジャッジ時間 | 3,020 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 30 ms
24,916 KB |
testcase_08 | AC | 29 ms
25,000 KB |
testcase_09 | AC | 30 ms
26,912 KB |
testcase_10 | AC | 29 ms
25,184 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 30 ms
27,100 KB |
testcase_15 | AC | 29 ms
25,052 KB |
testcase_16 | AC | 30 ms
26,844 KB |
testcase_17 | AC | 29 ms
25,044 KB |
testcase_18 | AC | 30 ms
26,968 KB |
testcase_19 | AC | 28 ms
25,256 KB |
testcase_20 | AC | 29 ms
27,044 KB |
testcase_21 | AC | 29 ms
27,348 KB |
testcase_22 | AC | 30 ms
26,960 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 30 ms
26,912 KB |
testcase_27 | AC | 28 ms
25,184 KB |
testcase_28 | AC | 29 ms
25,044 KB |
testcase_29 | AC | 29 ms
25,000 KB |
testcase_30 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; public class Program { public static void Main(string[] args) { var colors = new[] { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F" }; var patterns = 1; var except = 0; string line; string[] lineStr; for (var i=0; i<3; i++) { line = Console.ReadLine(); if (line != "NONE") { lineStr = line.Split(','); except = colors.Except(lineStr.ToArray()).Count(); except = except * except; patterns *= except; } } Console.WriteLine(patterns == 0 ? 16777216 : patterns); } }