結果
| 問題 |
No.345 最小チワワ問題
|
| コンテスト | |
| ユーザー |
bluemegane
|
| 提出日時 | 2018-09-25 10:24:07 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 2,000 ms |
| コード長 | 737 bytes |
| コンパイル時間 | 954 ms |
| コンパイル使用メモリ | 111,768 KB |
| 実行使用メモリ | 26,824 KB |
| 最終ジャッジ日時 | 2024-10-01 05:09:13 |
| 合計ジャッジ時間 | 2,741 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Linq;
using System.Collections.Generic;
using System;
public class Hello
{
public static void Main()
{
var c = new List<int>();
var w = new List<int>();
var s = Console.ReadLine().Trim();
var p = 0;
foreach (var x in s)
{
if (x == 'c') c.Add(p);
else if (x == 'w') w.Add(p);
p++;
}
var ans = new List<int>();
foreach (var x in c)
{
var count = 0;
foreach (var y in w)
{
if (y > x) count++;
if (count == 2) { ans.Add(y - x + 1); break; }
}
}
Console.WriteLine(ans.Count() == 0 ? -1 : ans.Min());
}
}
bluemegane