結果
問題 | No.607 開通777年記念 |
ユーザー | 👑 CleyL |
提出日時 | 2020-03-18 00:09:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 410 bytes |
コンパイル時間 | 552 ms |
コンパイル使用メモリ | 66,032 KB |
実行使用メモリ | 7,420 KB |
最終ジャッジ日時 | 2024-11-30 23:28:56 |
合計ジャッジ時間 | 1,762 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 39 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 5 ms
5,248 KB |
testcase_10 | AC | 4 ms
5,248 KB |
testcase_11 | AC | 221 ms
7,420 KB |
testcase_12 | AC | 202 ms
7,268 KB |
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 4 | main(){ | ^~~~
ソースコード
#include <iostream> using namespace std; int n,m,sm,pv,i,j; main(){ cin>>n>>m; int mp[m][n]; int nw[n]; for(i=0;m>i;i++)for(j=0;n>j;j++)cin>>mp[i][j]; for(i=0;n>i;i++)nw[i]=0; for(i=0;m>i;i++){ sm=0;pv=0; for(j = 0; n > j; j++){ nw[j] = nw[j]+mp[i][j]; sm += nw[j]; while(777 < sm)sm-=nw[pv];pv++; if(777==sm){ cout << "YES" << endl; return 0; } } } cout << "NO" << endl; }