結果
問題 | No.69 文字を自由に並び替え |
ユーザー | funakoshi |
提出日時 | 2019-06-21 16:15:26 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,557 bytes |
コンパイル時間 | 791 ms |
コンパイル使用メモリ | 109,776 KB |
実行使用メモリ | 25,520 KB |
最終ジャッジ日時 | 2024-06-07 12:07:51 |
合計ジャッジ時間 | 1,932 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
23,472 KB |
testcase_01 | AC | 24 ms
23,472 KB |
testcase_02 | AC | 24 ms
23,728 KB |
testcase_03 | AC | 23 ms
23,492 KB |
testcase_04 | AC | 23 ms
23,476 KB |
testcase_05 | AC | 23 ms
21,428 KB |
testcase_06 | AC | 23 ms
23,340 KB |
testcase_07 | AC | 23 ms
23,600 KB |
testcase_08 | AC | 23 ms
23,472 KB |
testcase_09 | AC | 24 ms
23,096 KB |
testcase_10 | AC | 24 ms
25,520 KB |
testcase_11 | AC | 23 ms
23,344 KB |
testcase_12 | AC | 23 ms
23,600 KB |
testcase_13 | AC | 24 ms
25,384 KB |
testcase_14 | WA | - |
コンパイルメッセージ
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; namespace yukicoderTest { class Program { static void Main(string[] args) { string[] us = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z" }; int[] cnt = new int[us.Length]; int[] cnt2 = new int[us.Length]; for (int i=0;i<cnt.Length;i++) { cnt[i] = 0; cnt2[i] = 0; } string A = Console.ReadLine(); string B = Console.ReadLine(); for(int i =0;i<A.Length;i++) { string temp = A.Substring(i, 1); string temp2 = B.Substring(i, 1); for(int j=0;j<us.Length;j++) { if(temp==us[j]) { cnt[j]++; } if(temp2==us[j]) { cnt2[j]++; } } } bool flg = true; for(int i=0;i<cnt.Length;i++) { int temp=cnt[i] - cnt2[i]; if(temp<0) { flg = false; Console.WriteLine("NO"); } } if(flg==true) { Console.WriteLine("YES"); } } } }