結果
問題 | No.69 文字を自由に並び替え |
ユーザー | ReERishun |
提出日時 | 2020-05-17 16:04:47 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 494 bytes |
コンパイル時間 | 943 ms |
コンパイル使用メモリ | 28,032 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 08:22:45 |
合計ジャッジ時間 | 1,725 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 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,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
ソースコード
#include<stdio.h> int main() { char strA[10]; char strB[10]; int flg[26]; int checkFlg = 0; scanf("%s", strA); scanf("%s", strA); for (int i = 0; i < 26; i++) flg[i] = 0; for (int i = 0; strA[i] != '\0'; i++) flg[strA[i] - 'a']++; for (int i = 0; strB[i] != '\0'; i++) flg[strB[i] - 'a']--; for (int i = 0; i < 26; i++) { if (flg[i] != 0) { checkFlg = 1; break; } } if(checkFlg) printf("NO"); else printf("YES"); // 終了コードは0 return 0; }