結果
問題 | No.142 単なる配列の操作に関する実装問題 |
ユーザー | ciel |
提出日時 | 2015-05-27 22:03:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 499 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 37,632 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 11:44:12 |
合計ジャッジ時間 | 6,386 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
コンパイルメッセージ
main.cpp:1:2: warning: #import is a deprecated GCC extension [-Wdeprecated] 1 | #import<vector> | ^~~~~~ main.cpp:2:2: warning: #import is a deprecated GCC extension [-Wdeprecated] 2 | #import<cstdio> | ^~~~~~ main.cpp: In function ‘int main()’: main.cpp:3:463: warning: argument 1 null where non-null expected [-Wnonnull] 3 | typedef unsigned long long ull;int main(){int i=-1,N,S,T,U,L,Q,w=64;scanf("%d%d%d%d%d%d",&N,&S,&T,&U,&L,&Q);std::vector<ull>A(Q=(N+127)/w),B(Q);for(;++i<N;S=((ull)T*S+U)%L)A[i/w]|=(ull)S%2<<i%w;for(;~scanf("%d%d%d%d",&S,&T,&U,&L);){for(T-=--S,--U,L=(T+63)/w,i=-1;++i<L;S%w&&(B[i]|=A[S/w+i+1]<<w-S%w))B[i]=A[S/w+i]>>S%w;for((T%=w)&&(B[L-1]=B[L-1]<<w-T>>w-T);L--;U%w&&(A[U/w+L+1]^=B[L]>>w-U%w))A[U/w+L]^=B[L]<<U%w;}for(i=-1;++i<N;)putchar(A[i/w]>>i%w&1?79:69);puts(0);} | ~~~~^~~ In file included from /usr/include/c++/11/cstdio:42, from main.cpp:2: /usr/include/stdio.h:661:12: note: in a call to function ‘int puts(const char*)’ declared ‘nonnull’ 661 | extern int puts (const char *__s); | ^~~~ main.cpp:3:74: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 3 | typedef unsigned long long ull;int main(){int i=-1,N,S,T,U,L,Q,w=64;scanf("%d%d%d%d%d%d",&N,&S,&T,&U,&L,&Q);std::vector<ull>A(Q=(N+127)/w),B(Q);for(;++i<N;S=((ull)T*S+U)%L)A[i/w]|=(ull)S%2<<i%w;for(;~scanf("%d%d%d%d",&S,&T,&U,&L);){for(T-=--S,--U,L=(T+63)/w,i=-1;++i<L;S%w&&(B[i]|=
ソースコード
#import<vector> #import<cstdio> typedef unsigned long long ull;int main(){int i=-1,N,S,T,U,L,Q,w=64;scanf("%d%d%d%d%d%d",&N,&S,&T,&U,&L,&Q);std::vector<ull>A(Q=(N+127)/w),B(Q);for(;++i<N;S=((ull)T*S+U)%L)A[i/w]|=(ull)S%2<<i%w;for(;~scanf("%d%d%d%d",&S,&T,&U,&L);){for(T-=--S,--U,L=(T+63)/w,i=-1;++i<L;S%w&&(B[i]|=A[S/w+i+1]<<w-S%w))B[i]=A[S/w+i]>>S%w;for((T%=w)&&(B[L-1]=B[L-1]<<w-T>>w-T);L--;U%w&&(A[U/w+L+1]^=B[L]>>w-U%w))A[U/w+L]^=B[L]<<U%w;}for(i=-1;++i<N;)putchar(A[i/w]>>i%w&1?79:69);puts(0);}