結果
問題 | No.435 占い(Extra) |
ユーザー | latte0119 |
提出日時 | 2016-10-15 01:40:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 1,638 ms |
コンパイル使用メモリ | 158,044 KB |
実行使用メモリ | 23,296 KB |
最終ジャッジ日時 | 2024-10-08 11:57:52 |
合計ジャッジ時間 | 10,797 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
13,312 KB |
testcase_01 | WA | - |
testcase_02 | AC | 48 ms
13,184 KB |
testcase_03 | AC | 50 ms
13,440 KB |
testcase_04 | AC | 47 ms
13,184 KB |
testcase_05 | AC | 49 ms
13,312 KB |
testcase_06 | WA | - |
testcase_07 | AC | 49 ms
13,440 KB |
testcase_08 | AC | 49 ms
13,312 KB |
testcase_09 | AC | 50 ms
13,440 KB |
testcase_10 | AC | 53 ms
13,568 KB |
testcase_11 | AC | 54 ms
13,440 KB |
testcase_12 | AC | 95 ms
14,464 KB |
testcase_13 | AC | 87 ms
13,440 KB |
testcase_14 | AC | 81 ms
13,312 KB |
testcase_15 | AC | 74 ms
13,184 KB |
testcase_16 | AC | 77 ms
13,440 KB |
testcase_17 | AC | 124 ms
13,312 KB |
testcase_18 | AC | 94 ms
14,336 KB |
testcase_19 | AC | 87 ms
13,440 KB |
testcase_20 | AC | 563 ms
23,168 KB |
testcase_21 | AC | 488 ms
14,336 KB |
testcase_22 | AC | 424 ms
13,568 KB |
testcase_23 | AC | 361 ms
13,440 KB |
testcase_24 | WA | - |
testcase_25 | AC | 320 ms
13,440 KB |
testcase_26 | AC | 558 ms
23,104 KB |
testcase_27 | AC | 506 ms
14,464 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 449 ms
17,920 KB |
testcase_32 | AC | 417 ms
14,592 KB |
testcase_33 | AC | 349 ms
13,568 KB |
testcase_34 | WA | - |
testcase_35 | AC | 379 ms
13,824 KB |
コンパイルメッセージ
main.cpp: In function ‘void solve()’: main.cpp:19:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf("%d%d%d%d%d",&N,&x,&a,&b,&m); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp: In function ‘int main()’: main.cpp:55:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 55 | scanf("%d",&T); | ~~~~~^~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; const int SIZE=10000000; char A[SIZE]; char F[SIZE]; int inv[9]; inline int f(int x){ int ret=0; while(x){ ret+=x/3; x/=3; } return ret; } void solve(){ int N,x,a,b,m; scanf("%d%d%d%d%d",&N,&x,&a,&b,&m); A[0]=x%10; for(int i=1;i<N;i++){ x=((x^a)+b)%m; A[i]=x%10; } N--; int fn=f(N); int ans=0; for(int i=0;i<=N;i++){ int tmp=fn-f(i)-f(N-i); int t=F[N]*inv[F[i]]*inv[F[N-i]]%9; if(tmp>=2)t=0; else if(tmp==1)t=t*3%9; ans=(ans+t*A[i])%9; } if(ans==0)ans=9; printf("%d\n",ans); } int main(){ F[0]=1; for(int i=1;i<SIZE;i++){ int t=i; while(t%3==0)t/=3; F[i]=F[i-1]*t%9; } for(int i=0;i<9;i++){ if(i%3==0)continue; for(int j=0;j<9;j++)if(i*j%9==1)inv[i]=j; } int T; scanf("%d",&T); while(T--)solve(); }