結果
問題 | No.462 6日知らずのコンピュータ |
ユーザー | mban |
提出日時 | 2016-12-22 13:05:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,066 bytes |
コンパイル時間 | 1,089 ms |
コンパイル使用メモリ | 113,056 KB |
実行使用メモリ | 29,588 KB |
最終ジャッジ日時 | 2024-12-14 14:20:51 |
合計ジャッジ時間 | 5,798 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
25,364 KB |
testcase_01 | AC | 28 ms
23,092 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | AC | 29 ms
27,044 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 30 ms
25,136 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | AC | 27 ms
27,292 KB |
testcase_29 | RE | - |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | WA | - |
testcase_33 | AC | 27 ms
27,556 KB |
testcase_34 | RE | - |
testcase_35 | AC | 28 ms
27,404 KB |
testcase_36 | RE | - |
testcase_37 | WA | - |
testcase_38 | AC | 29 ms
27,412 KB |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | AC | 28 ms
25,104 KB |
testcase_45 | AC | 29 ms
25,512 KB |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | AC | 29 ms
25,232 KB |
testcase_50 | RE | - |
testcase_51 | AC | 30 ms
25,104 KB |
testcase_52 | RE | - |
testcase_53 | AC | 30 ms
25,232 KB |
testcase_54 | AC | 28 ms
25,384 KB |
testcase_55 | AC | 26 ms
27,516 KB |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | AC | 30 ms
27,160 KB |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | AC | 29 ms
23,096 KB |
testcase_62 | WA | - |
testcase_63 | AC | 27 ms
25,396 KB |
testcase_64 | AC | 27 ms
25,620 KB |
testcase_65 | AC | 28 ms
25,360 KB |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | AC | 29 ms
25,336 KB |
testcase_71 | RE | - |
testcase_72 | AC | 28 ms
27,168 KB |
testcase_73 | AC | 30 ms
25,232 KB |
testcase_74 | RE | - |
testcase_75 | RE | - |
testcase_76 | RE | - |
testcase_77 | RE | - |
testcase_78 | RE | - |
testcase_79 | AC | 23 ms
24,596 KB |
testcase_80 | WA | - |
testcase_81 | AC | 24 ms
26,684 KB |
testcase_82 | WA | - |
testcase_83 | WA | - |
testcase_84 | AC | 28 ms
23,092 KB |
testcase_85 | AC | 29 ms
25,372 KB |
testcase_86 | AC | 24 ms
24,776 KB |
コンパイルメッセージ
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; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; class Magatro { static int N, K; const long MOD = (long)1e7; static void Main() { string[] s = Console.ReadLine().Split(' '); N = int.Parse(s[0]); K = int.Parse(s[1]); if (K == 0) { Console.WriteLine(kaijou(N)); return; } int[] a = Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); Array.Sort(a); int b = 0; long result = 1; for(int i = 0; i < K; i++) { if (!check(b, a[i])) { Console.WriteLine(0); return; } result*= count(b, a[i]); b = a[i]; } result *= count(b, MyPow(2, N)); Console.WriteLine(result % MOD); } static long count(long a,long b) { int cnt = 0; for(int i = 0; i < N; i++) { if (a % 2 == 0 && b %2== 1) { cnt++; } a /= 2; b /= 2; } return kaijou(cnt); } static bool check(long a,long b) { for (int i = 0; i < N; i++) { if (a % 2 == 1 && b % 2 == 0) { return false; } a /= 2; b /= 2; } return true; } static long MyPow(long a,long b) { long result = 1; while (b > 0) { if (b % 2 == 0) { a *= a; // a %= MOD; b /= 2; } else { result *= a; // result %= MOD; b--; } } return result; } static long kaijou(int n) { if (n == 0) { return 1; } return n * kaijou(n - 1)%MOD; } }