結果
問題 | No.341 沈黙の期間 |
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
コンパイルメッセージ
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); } }