結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー pengin_2000
提出日時 2021-10-31 09:00:17
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 29,056 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-08 09:01:37
合計ジャッジ時間 1,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main()
{
	int n;
	scanf("%d", &n);
	int cnt[10];
	int i;
	for (i = 0; i < 10; i++)
		cnt[i] = 0;
	for (; n > 0; n /= 10)
		cnt[n % 10]++;
	if (cnt[4] > 0 && cnt[6] > 0)
		printf("Beautiful\n");
	else
		printf("...\n");
	return 0;
}
0