結果
| 問題 |
No.69 文字を自由に並び替え
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-31 09:41:12 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,230 bytes |
| コンパイル時間 | 3,130 ms |
| コンパイル使用メモリ | 108,900 KB |
| 実行使用メモリ | 18,688 KB |
| 最終ジャッジ日時 | 2024-09-21 01:10:16 |
| 合計ジャッジ時間 | 2,370 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 WA * 1 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Diagnostics;
namespace yukicoder
{
class Program
{
static void Main(string[] args)
{
//文字入力
string A = Console.ReadLine();
string B = Console.ReadLine();
//strBの数と同じならばループが終わる
int count = 0;
for (int i = 0; i < A.Length; i++)
{
//文字列の一部分の取得
string strB = B.Substring(i, 1);
count++;
//同じ文字列の検索
int str = A.IndexOf(strB, 0);
//なければ、ループが終わる NO
if (str == -1)
{
Console.WriteLine("NO");
break;
}
else
{
//検索した文字列の削除
string a = str.ToString().Remove(0, 1);
}
//カウントが文字列と同じならばYES
if (count==A.Length)
{
Console.WriteLine("YES");
break;
}
}
}
}
}