結果

問題 No.1592 Tenkei 90
ユーザー 👑 ygussanyygussany
提出日時 2021-05-11 20:03:08
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 340 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 28,800 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 14:24:46
合計ジャッジ時間 936 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	char S[15], T[15] = "kyoprotenkei90";
	scanf("%s", S);
	
	int i, count[128] = {};
	for (i = 0; S[i] != 0; i++) count[S[i]]++;
	for (i = 0; T[i] != 0; i++) count[T[i]]--;
	for (i = 0; i < 128; i++) if (count[i] != 0) break;
	if (i == 128) printf("Yes\n");
	else printf("No\n");
	fflush(stdout);
	return 0;
}
0