結果
問題 | No.607 開通777年記念 |
ユーザー | mban |
提出日時 | 2018-01-15 23:17:59 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 319 ms / 2,000 ms |
コード長 | 2,075 bytes |
コンパイル時間 | 4,134 ms |
コンパイル使用メモリ | 110,016 KB |
実行使用メモリ | 49,972 KB |
最終ジャッジ日時 | 2024-06-06 12:11:40 |
合計ジャッジ時間 | 2,416 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
17,792 KB |
testcase_01 | AC | 21 ms
17,792 KB |
testcase_02 | AC | 21 ms
18,048 KB |
testcase_03 | AC | 21 ms
18,176 KB |
testcase_04 | AC | 21 ms
17,920 KB |
testcase_05 | AC | 23 ms
18,048 KB |
testcase_06 | AC | 23 ms
17,920 KB |
testcase_07 | AC | 79 ms
23,936 KB |
testcase_08 | AC | 23 ms
17,920 KB |
testcase_09 | AC | 26 ms
18,176 KB |
testcase_10 | AC | 26 ms
18,432 KB |
testcase_11 | AC | 319 ms
49,972 KB |
testcase_12 | AC | 315 ms
47,732 KB |
コンパイルメッセージ
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 long[,] A; private long[] Train; private void Scan() { var line = Console.ReadLine().Split(' '); N = int.Parse(line[0]); M = int.Parse(line[1]); A = new long[M, N]; for (int i = 0; i < M; i++) { line = Console.ReadLine().Split(' '); for (int j = 0; j < N; j++) { A[i, j] = long.Parse(line[j]); } } } public void Solve() { Scan(); Train = new long[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() { long sum = 0; int l = 0; for (int r = 0; r < N; r++) { sum += Train[r]; while(sum>777) { sum -= Train[l]; l++; } if(sum==777) { return true; } } return false; } static public void Main() { new Program().Solve(); } }