結果
問題 | No.462 6日知らずのコンピュータ |
ユーザー | rickytheta |
提出日時 | 2016-12-13 00:09:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,333 bytes |
コンパイル時間 | 1,234 ms |
コンパイル使用メモリ | 157,336 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-29 18:08:47 |
合計ジャッジ時間 | 3,276 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,820 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 1 ms
6,820 KB |
testcase_50 | AC | 1 ms
6,820 KB |
testcase_51 | AC | 1 ms
6,820 KB |
testcase_52 | AC | 2 ms
6,820 KB |
testcase_53 | AC | 1 ms
6,820 KB |
testcase_54 | AC | 1 ms
6,816 KB |
testcase_55 | AC | 1 ms
6,820 KB |
testcase_56 | AC | 1 ms
6,820 KB |
testcase_57 | AC | 2 ms
6,820 KB |
testcase_58 | AC | 1 ms
6,816 KB |
testcase_59 | AC | 1 ms
6,816 KB |
testcase_60 | AC | 1 ms
6,816 KB |
testcase_61 | AC | 2 ms
6,820 KB |
testcase_62 | AC | 2 ms
6,816 KB |
testcase_63 | AC | 2 ms
6,816 KB |
testcase_64 | AC | 2 ms
6,816 KB |
testcase_65 | AC | 1 ms
6,816 KB |
testcase_66 | AC | 2 ms
6,816 KB |
testcase_67 | AC | 1 ms
6,816 KB |
testcase_68 | AC | 2 ms
6,816 KB |
testcase_69 | AC | 2 ms
6,820 KB |
testcase_70 | AC | 1 ms
6,816 KB |
testcase_71 | AC | 2 ms
6,816 KB |
testcase_72 | AC | 2 ms
6,816 KB |
testcase_73 | AC | 2 ms
6,820 KB |
testcase_74 | AC | 2 ms
6,816 KB |
testcase_75 | AC | 2 ms
6,816 KB |
testcase_76 | AC | 1 ms
6,820 KB |
testcase_77 | AC | 2 ms
6,824 KB |
testcase_78 | AC | 2 ms
6,820 KB |
testcase_79 | AC | 2 ms
6,816 KB |
testcase_80 | AC | 2 ms
6,820 KB |
testcase_81 | AC | 2 ms
6,816 KB |
testcase_82 | AC | 1 ms
6,816 KB |
testcase_83 | WA | - |
testcase_84 | AC | 2 ms
6,816 KB |
testcase_85 | AC | 1 ms
6,816 KB |
testcase_86 | AC | 2 ms
6,820 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:47:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 47 | scanf("%d%d",&n,&k); | ~~~~~^~~~~~~~~~~~~~ main.cpp:49:16: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | REP(i,k)scanf("%lld",a+i+1); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef pair<int,int> pii; typedef pair<ll,ll> pll; typedef int _loop_int; #define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i) #define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i) #define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i) #define DEBUG(x) cout<<#x<<": "<<x<<endl #define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl #define ALL(a) (a).begin(),(a).end() #define CHMIN(a,b) a=min((a),(b)) #define CHMAX(a,b) a=max((a),(b)) // mod const ll MOD = 1000000007ll; #define FIX(a) ((a)%MOD+MOD)%MOD // floating typedef double Real; const Real EPS = 1e-11; #define EQ0(x) (abs(x)<EPS) #define EQ(a,b) (abs(a-b)<EPS) typedef complex<Real> P; int n,k; ll a[252]; ll fact(ll x){ ll r = 1; while(x>0){ r = r*x%MOD; x--; } return r; } int main(){ scanf("%d%d",&n,&k); a[0] = 0; REP(i,k)scanf("%lld",a+i+1); k++; a[k++] = (1ll<<n)-1; // sort(a,a+k); ll ans = 1; REP(i,k-1){ ll bef = a[i]; ll aft = a[i+1]; ll cros = bef & aft; if(cros != bef){ ans = 0; break; } ll mul = __builtin_popcount(aft ^ cros); ans = ans*fact(mul)%MOD; } printf("%lld\n",ans); return 0; }