結果
問題 | No.69 文字を自由に並び替え |
ユーザー | Elk |
提出日時 | 2018-05-26 15:14:51 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 601 bytes |
コンパイル時間 | 771 ms |
コンパイル使用メモリ | 23,296 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-14 07:04:10 |
合計ジャッジ時間 | 889 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 0 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 0 ms
5,248 KB |
testcase_11 | AC | 0 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%s%s", str1, str2); | ~~~~~^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> int main(){ char str1[11], str2[11]; int i, j, len, cnt = 0, flag[10] = {0}; scanf("%s%s", str1, str2); len = strlen(str1); for(i = 0; i < len; i++){ for(j = 0; j < len; j++){ if(str1[i] == str2[j] && flag[j] == 0){ flag[j] = 1; //printf("i %d j %d\n", i, j); break; } } } for(i = 0; i < len; i++){ if(flag[i] == 1) cnt++; } if(cnt == len){ printf("YES\n"); }else{ printf("NO\n"); } return 0; }