結果
問題 | No.607 開通777年記念 |
ユーザー |
![]() |
提出日時 | 2021-02-22 21:57:38 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 570 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 30,720 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-21 17:28:51 |
合計ジャッジ時間 | 1,559 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
コンパイルメッセージ
main.c:8:1: warning: data definition has no type or storage class 8 | d[1001]; | ^ main.c:8:1: warning: type defaults to 'int' in declaration of 'd' [-Wimplicit-int] main.c:10:1: warning: return type defaults to 'int' [-Wimplicit-int] 10 | main(){ | ^~~~ main.c: In function 'main': main.c:26:33: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 26 | write(1,"YES",3); | ^~~~~ main.c:27:33: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 27 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast")#pragma GCC target("avx2")char*mmap();#define RD(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}#define RD_SIGNED(v) int v=0;{int _c,_s;_s=*rp=='-'&&++rp;while(_c=*rp++-48,_c>=0)v=v*10+_c;v=_s?-v:v;}d[1001];main(){char*rp=mmap(0l,1l<<28,1,2,0,0ll);RD(n);RD(m);for(int i=0;i<m;++i){for(int j=0;j<n;++j){RD_SIGNED(a);d[j]+=a;}int b=0,e=0,s=0;while(e<n){s+=d[e++];while(s>777){s-=d[b++];}if(s==777){write(1,"YES",3);_exit(0);}}}write(1,"NO",2);_exit(0);}