結果
問題 | No.69 文字を自由に並び替え |
ユーザー | Yatsuku |
提出日時 | 2015-12-09 17:11:47 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 539 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 21,120 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 13:13:15 |
合計ジャッジ時間 | 819 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 0 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 0 ms
5,376 KB |
testcase_12 | AC | 0 ms
5,376 KB |
testcase_13 | AC | 0 ms
5,376 KB |
testcase_14 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:12:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%s", str_a); | ^~~~~~~~~~~~~~~~~~ main.c:13:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%s", str_b); | ^~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int i; char str_a[10]; char str_b[10]; int word_a[26] = {0}; int word_b[26] = {0}; scanf("%s", str_a); scanf("%s", str_b); for ( i = 0; str_a[i] != '\0'; i++ ) { if ('a' <= str_a[i] && str_a[i] <= 'z') { word_a[str_a[i] - 'a']++; } } for ( i = 0; str_b[i] != '\0'; i++ ) { if ('a' <= str_b[i] && str_b[i] <= 'z') { word_b[str_b[i] - 'a']++; } } for ( i = 0; i < 10; i++ ) { if ( word_a[i] != word_b[i] ) { puts("NO"); return 0; } } puts("YES"); return 0; }