結果
問題 | No.69 文字を自由に並び替え |
ユーザー | pracode |
提出日時 | 2018-09-19 17:58:25 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 704 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 29,440 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 08:19:25 |
合計ジャッジ時間 | 744 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
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 | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
#include <stdio.h> #include <string.h> void swap(char *c1, char*c2); void alphasort(char str[], int count); int main() { char str1[11]; char str2[11]; int ans; int count = 0; scanf("%s", str1); scanf("%s", str2); while (str1[count]!= '\0') { count++; } alphasort(str1,count+1); alphasort(str2,count+1); ans = strcmp(str1, str2); printf("%s", (ans == 0 ? "YES" : "NO")); return 0; } void swap(char *c1,char *c2) { char temp; temp = *c1; *c1 = *c2; *c2 = temp; } void alphasort(char str[], int count) { int i, j; for (i = 0; i < count - 1; i++) { for (j = 0; j < count - 1- i; j++) { if ((int)(str[j]) >= (int)(str[j + 1])){ swap(&str[j], &str[j + 1]); } } } }