結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | aya |
提出日時 | 2019-08-02 14:36:16 |
言語 | PHP (8.3.4) |
結果 |
AC
|
実行時間 | 44 ms / 2,000 ms |
コード長 | 288 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 32,272 KB |
実行使用メモリ | 30,804 KB |
最終ジャッジ日時 | 2024-07-05 08:07:26 |
合計ジャッジ時間 | 715 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
30,744 KB |
testcase_01 | AC | 41 ms
30,568 KB |
testcase_02 | AC | 44 ms
30,804 KB |
testcase_03 | AC | 41 ms
30,504 KB |
testcase_04 | AC | 40 ms
30,764 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $num=(int)trim(fgets(STDIN)); for($i=1;$i<=$num;$i++){ $input=(int)trim(fgets(STDIN)); if($input % 40 ==0){ $input="ikisugi"; }elseif($input % 10 ==0){ $input="sugi"; }elseif($input % 8 ==0){ $input="iki"; }else{ $input=$input/3; } echo $input."\n"; }