結果
問題 | No.607 開通777年記念 |
ユーザー | htensai |
提出日時 | 2019-11-14 13:23:48 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 608 ms / 2,000 ms |
コード長 | 1,337 bytes |
コンパイル時間 | 2,444 ms |
コンパイル使用メモリ | 76,572 KB |
実行使用メモリ | 47,552 KB |
最終ジャッジ日時 | 2024-09-21 21:23:53 |
合計ジャッジ時間 | 5,461 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
36,796 KB |
testcase_01 | AC | 51 ms
36,412 KB |
testcase_02 | AC | 52 ms
36,488 KB |
testcase_03 | AC | 53 ms
36,860 KB |
testcase_04 | AC | 52 ms
36,908 KB |
testcase_05 | AC | 52 ms
36,500 KB |
testcase_06 | AC | 52 ms
36,952 KB |
testcase_07 | AC | 150 ms
42,572 KB |
testcase_08 | AC | 51 ms
36,536 KB |
testcase_09 | AC | 107 ms
39,264 KB |
testcase_10 | AC | 54 ms
36,360 KB |
testcase_11 | AC | 579 ms
46,992 KB |
testcase_12 | AC | 608 ms
47,552 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main (String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 2); int n = Integer.parseInt(first[0]); int m = Integer.parseInt(first[1]); int[] arr = new int[n + 1]; String[] second = br.readLine().split(" ", n); for (int i = 1; i <= n; i++) { arr[i] = Integer.parseInt(second[i - 1]) + arr[i - 1]; } if (check(arr)) { System.out.println("YES"); return; } for (int i = 1; i < m; i++) { int sum = 0; String[] line = br.readLine().split(" ", n); for (int j = 1; j <= n; j++) { int x =Integer.parseInt(line[j - 1]); sum += x; arr[j] += sum; } if (check(arr)) { System.out.println("YES"); return; } } System.out.println("NO"); } static boolean check(int[] arr) { for (int i = 1; i < arr.length; i++) { if (arr[i] - arr[i - 1] > 777) { continue; } for (int j = 0; j < i; j++) { if (arr[i] - arr[j] == 777) { return true; } else if (arr[i] - arr[j] < 777) { break; } } } return false; } }