結果

問題 No.661 ハローキティはりんご3個分
ユーザー dong_fengdong_feng
提出日時 2018-04-30 02:22:47
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 30,916 KB
実行使用メモリ 31,236 KB
最終ジャッジ日時 2024-06-27 23:46:27
合計ジャッジ時間 720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,236 KB
testcase_01 AC 41 ms
31,020 KB
testcase_02 AC 41 ms
31,012 KB
testcase_03 AC 38 ms
31,144 KB
testcase_04 AC 39 ms
30,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$inputNumber = fgets(STDIN);

for($i=0;$i<$inputNumber;$i++){
	$inputAppleNumbers[$i] = fgets(STDIN);
}

//print_r($inputAppleNumbers);

for($i=0;$i<$inputNumber;$i++){
//	echo ($inputAppleNumbers[$i]%40==0).": ";
	echo ($inputAppleNumbers[$i]%40==0)?'ikisugi':
	(($inputAppleNumbers[$i]%10==0)?'sugi':
	(($inputAppleNumbers[$i]%8==0)?'iki':
	($inputAppleNumbers[$i]/3)));
	echo PHP_EOL;
}
0