結果
| 問題 |
No.345 最小チワワ問題
|
| コンテスト | |
| ユーザー |
pirorirori_n712
|
| 提出日時 | 2018-06-28 01:34:17 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 784 bytes |
| コンパイル時間 | 787 ms |
| コンパイル使用メモリ | 105,508 KB |
| 実行使用メモリ | 27,740 KB |
| 最終ジャッジ日時 | 2024-06-30 23:17:41 |
| 合計ジャッジ時間 | 2,439 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 8 WA * 21 |
コンパイルメッセージ
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;
class No345{
static void Main(){
var m=Console.ReadLine();
var n=-1;
var list=new List<int>();
var f=false;
foreach(char c in m){
if(c=='c'){
n=1;
}else if(n>0){
n+=1;
if(c=='w'){
if(f){
list.Add(n);
n=-1;
f=false;
}else{
f=true;
}
}
}else{
n=-1;
}
}
if(list==null){
list.Sort();
Console.WriteLine(list[0]);
}else{
Console.WriteLine(-1);
}
}
}
pirorirori_n712