結果

問題 No.661 ハローキティはりんご3個分
ユーザー seaside0002seaside0002
提出日時 2020-01-02 19:02:38
言語 PHP
(8.3.4)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 4,545 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 32,404 KB
最終ジャッジ日時 2024-05-02 06:41:42
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
32,272 KB
testcase_01 AC 33 ms
32,404 KB
testcase_02 AC 33 ms
32,276 KB
testcase_03 AC 34 ms
32,272 KB
testcase_04 AC 33 ms
32,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$weight;

for($i = 0; $i < $n; $i++){
	$weight[$i] = trim(fgets(STDIN)); 
}

foreach($weight as $value){
	echo kitty($value)."\n";
}


function kitty($value){
	$ans;
	
	if($value % 8 == 0){
		$ans = 'iki';
		if($value % 10 == 0){
			$ans .= 'sugi';
		}
	}else if($value % 10 == 0){
		$ans = 'sugi';
	}else{
		$ans = $value / 3;
	}
	
	return $ans;
}
0