結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | aya |
提出日時 | 2019-08-02 14:35:11 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 288 bytes |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 31,044 KB |
実行使用メモリ | 31,084 KB |
最終ジャッジ日時 | 2024-07-05 08:07:20 |
合計ジャッジ時間 | 814 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
30,720 KB |
testcase_01 | WA | - |
testcase_02 | AC | 40 ms
30,696 KB |
testcase_03 | AC | 40 ms
31,084 KB |
testcase_04 | AC | 41 ms
30,936 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 % 80 ==0){ $input="ikisugi"; }elseif($input % 10 ==0){ $input="sugi"; }elseif($input % 8 ==0){ $input="iki"; }else{ $input=$input/3; } echo $input."\n"; }