結果

問題 No.69 文字を自由に並び替え
ユーザー goodbatongoodbaton
提出日時 2014-11-23 16:16:04
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 596 bytes
コンパイル時間 839 ms
コンパイル使用メモリ 65,300 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 04:43:16
合計ジャッジ時間 1,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |     scanf("%s%s",a,b);
      |     ~~~~~^~~~~~~~~~~~
main.cpp:31:5: warning: ‘ans’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   31 |     if(ans==0)
      |     ^~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>

using namespace std;



int main(){
    char a[11],b[11],ans;
    
    scanf("%s%s",a,b);
    
    for(int i=0;b[i]!='\0';i++){
        ans++;
        for(int j=0;j<10;j++){
            if(a[j]==b[i]){
                a[j]=' ';
                ans--;
                break;
            }
        }
    }
    
    if(ans==0)
        puts("YES");
    else
        puts("NO");
    
    return 0;
}
0