結果
問題 | No.341 沈黙の期間 |
ユーザー | mban |
提出日時 | 2016-11-04 14:13:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 5,000 ms |
コード長 | 836 bytes |
コンパイル時間 | 1,329 ms |
コンパイル使用メモリ | 111,708 KB |
実行使用メモリ | 25,676 KB |
最終ジャッジ日時 | 2024-11-25 02:53:39 |
合計ジャッジ時間 | 1,766 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
21,684 KB |
testcase_01 | AC | 22 ms
23,504 KB |
testcase_02 | AC | 22 ms
23,752 KB |
testcase_03 | AC | 21 ms
21,556 KB |
testcase_04 | AC | 21 ms
23,264 KB |
testcase_05 | AC | 23 ms
23,388 KB |
testcase_06 | AC | 23 ms
23,728 KB |
testcase_07 | AC | 23 ms
23,620 KB |
testcase_08 | AC | 23 ms
23,500 KB |
testcase_09 | AC | 21 ms
23,484 KB |
testcase_10 | AC | 22 ms
23,260 KB |
testcase_11 | AC | 22 ms
25,676 KB |
testcase_12 | AC | 22 ms
23,604 KB |
testcase_13 | AC | 21 ms
21,304 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.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; class Magatro { static void Main() { string s = Console.ReadLine(); int max = 0; bool st = false; int counter = 0; for(int i = 0; i < s.Length; i++) { if(s[i]== '…') { if (!st) { st = true; counter = i; } } else { if (st) { st = false; max = Math.Max(max, i - counter); } } } if (st) { max = Math.Max(max, s.Length - counter); } Console.WriteLine(max); } }