結果

問題 No.69 文字を自由に並び替え
ユーザー makotonarimakotonari
提出日時 2017-10-22 17:45:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 748 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 23,424 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 05:36:00
合計ジャッジ時間 802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <string.h>

void sort(char *src) {
    int i = 0;
    int j = 0;
    char tmp;
    for (i = 0; src[i + 1] != '\0'; i++) {
        for(j = i; src[j + 1] != '\0'; j++) {
            if (src[i] > src[j+1]){
            tmp = src[j+1];
             (src[j + 1]) = (src[i]);
            src[i] = tmp;
            }
        }
    }
}

int main(void) {
    char inputA[11] = { '\0' };
    char inputB[11] = { '\0' };
    scanf("%s", inputA);
    scanf("%s", inputB);
    unsigned int itr = 0;
    sort(inputA);
    sort(inputB);
    
    while (1) {
    if(inputA[itr] == '\0'){break;}
    if(inputA[itr] != inputB[itr]){
        printf("NO\n");
        return 0;
    }
        itr++;
    }
    printf("YES\n");
    return 0;
}
0