結果
| 問題 |
No.8020 サンシャイン◯崎
|
| コンテスト | |
| ユーザー |
myanta
|
| 提出日時 | 2017-03-31 22:36:24 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 192 bytes |
| コンパイル時間 | 150 ms |
| コンパイル使用メモリ | 27,776 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-23 13:57:24 |
| 合計ジャッジ時間 | 875 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#include<stdio.h>
int main(void)
{
static int n[256];
int c;
while((c=getchar())!=EOF)
{
n[c]++;
}
printf("%d %d %d %d %d\n", n['Y'], n['E'], n['A'], n['H'], n['!']);
return 0;
}
myanta