結果
問題 | No.607 開通777年記念 |
ユーザー | mban |
提出日時 | 2018-01-15 22:53:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,149 bytes |
コンパイル時間 | 866 ms |
コンパイル使用メモリ | 111,852 KB |
実行使用メモリ | 51,116 KB |
最終ジャッジ日時 | 2024-06-06 12:09:22 |
合計ジャッジ時間 | 2,674 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
23,604 KB |
testcase_01 | AC | 26 ms
23,912 KB |
testcase_02 | AC | 26 ms
25,700 KB |
testcase_03 | AC | 28 ms
24,040 KB |
testcase_04 | AC | 26 ms
23,912 KB |
testcase_05 | AC | 26 ms
24,040 KB |
testcase_06 | AC | 26 ms
23,860 KB |
testcase_07 | AC | 78 ms
28,824 KB |
testcase_08 | AC | 27 ms
23,916 KB |
testcase_09 | AC | 29 ms
23,908 KB |
testcase_10 | AC | 29 ms
23,868 KB |
testcase_11 | AC | 316 ms
51,116 KB |
testcase_12 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; using System.IO; using System.Diagnostics; class Scanner { private readonly char Separator = ' '; private int Index = 0; private string[] Line = new string[0]; public string Next() { if (Index >= Line.Length) { Line = Console.ReadLine().Split(Separator); Index = 0; } var ret = Line[Index]; Index++; return ret; } public int NextInt() { return int.Parse(Next()); } private long NextLong() { return long.Parse(Next()); } } class Program { private int N, M; private int[,] A; private int[] Train; private void Scan() { var sc = new Scanner(); N = sc.NextInt(); M = sc.NextInt(); A = new int[M, N]; for (int i = 0; i < M; i++) { for (int j = 0; j < N; j++) { A[i, j] = sc.NextInt(); } } } public void Solve() { Scan(); Train = new int[N]; for (int i = 0; i < M; i++) { for (int j = 0; j < N; j++) { Train[j] += A[i, j]; } if (C()) { Console.WriteLine("YES"); return; } } Console.WriteLine("NO"); } private bool C() { int left = 0; int right = 0; int sum = 0; for (right = 0; right < N; right++) { sum += Train[right]; if (sum == 777) return true; if (sum > 777) { for (; left <= right; left++) { sum -= Train[left]; if (sum <= 777) break; } if (sum == 777) return true; } } return false; } static public void Main() { new Program().Solve(); } }