結果
| 問題 |
No.345 最小チワワ問題
|
| コンテスト | |
| ユーザー |
bluemegane
|
| 提出日時 | 2018-09-25 10:18:12 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 595 bytes |
| コンパイル時間 | 2,052 ms |
| コンパイル使用メモリ | 109,612 KB |
| 実行使用メモリ | 27,880 KB |
| 最終ジャッジ日時 | 2024-10-02 11:01:26 |
| 合計ジャッジ時間 | 3,648 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 3 WA * 26 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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();
for (int i = 0; i < s.Length; i++)
if (s[i] == 'c') c.Add(i);
else if (s[i] == 'w') w.Add(i);
foreach (var x in c)
{
var count = 0;
foreach (var y in w)
{
if (y > x) count++;
if (count == 2) { Console.WriteLine(y - x + 1); break; }
}
}
}
}
bluemegane