結果

問題 No.8020 サンシャイン◯崎
ユーザー すーみんすーみん
提出日時 2018-05-25 12:44:49
言語 PHP
(843.2)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 171 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 31,064 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-12-23 14:07:30
合計ジャッジ時間 3,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
31,044 KB
testcase_01 AC 36 ms
31,088 KB
testcase_02 AC 36 ms
31,212 KB
testcase_03 AC 36 ms
31,320 KB
testcase_04 AC 38 ms
31,080 KB
testcase_05 AC 38 ms
31,036 KB
testcase_06 AC 38 ms
31,352 KB
testcase_07 AC 36 ms
31,284 KB
testcase_08 AC 38 ms
31,228 KB
testcase_09 AC 37 ms
31,216 KB
testcase_10 AC 37 ms
31,004 KB
testcase_11 AC 37 ms
31,080 KB
testcase_12 AC 37 ms
31,488 KB
testcase_13 AC 37 ms
31,212 KB
testcase_14 AC 38 ms
31,260 KB
testcase_15 AC 38 ms
31,124 KB
testcase_16 AC 38 ms
30,996 KB
testcase_17 AC 37 ms
31,160 KB
testcase_18 AC 37 ms
31,264 KB
testcase_19 AC 37 ms
31,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$sunshine = trim(fgets(STDIN));
$checkCharList = array("Y","E","A","H","!");
foreach($checkCharList as $value) echo mb_substr_count($sunshine,$value)." ";
echo "\n";
0