結果
問題 | No.607 開通777年記念 |
ユーザー | takeya_okino |
提出日時 | 2019-08-12 11:55:45 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,017 bytes |
コンパイル時間 | 2,262 ms |
コンパイル使用メモリ | 77,664 KB |
実行使用メモリ | 66,680 KB |
最終ジャッジ日時 | 2024-09-15 08:54:38 |
合計ジャッジ時間 | 8,266 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 125 ms
41,076 KB |
testcase_02 | RE | - |
testcase_03 | AC | 124 ms
41,124 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 128 ms
41,176 KB |
testcase_07 | AC | 697 ms
54,688 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[][] a = new int[m][n]; int[][] b = new int[m][n]; for(int i = 0; i < m; i++) { for(int j = 0; j < n; j++) { a[i][j] = sc.nextInt(); } } for(int j = 0; j < n; j++) { b[0][j] = a[0][j]; } for(int i = 1; i < m; i++) { for(int j = 0; j < n; j++) { b[i][j] = b[i - 1][j] + a[i][j]; } } String ans = "NO"; int p = 0; for(int i = 0; i < m; i++) { int left = 0; int right = 0; int sum = 0; while(right < n) { sum += b[i][right]; if(sum <= 777) { if(sum == 777) { p++; right++; } else { right++; } } else { sum -= b[i][left]; left++; } } } if(p > 0) ans = "YES"; System.out.println(ans); } }