結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー yumechiyumechi
提出日時 2017-03-26 15:22:41
言語 PHP
(8.3.4)
結果
AC  
実行時間 1,225 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 2,798 ms
コンパイル使用メモリ 30,316 KB
実行使用メモリ 32,020 KB
最終ジャッジ日時 2024-09-22 01:05:02
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
30,804 KB
testcase_01 AC 74 ms
30,812 KB
testcase_02 AC 69 ms
30,584 KB
testcase_03 AC 123 ms
30,708 KB
testcase_04 AC 39 ms
30,848 KB
testcase_05 AC 38 ms
30,888 KB
testcase_06 AC 38 ms
30,776 KB
testcase_07 AC 38 ms
30,712 KB
testcase_08 AC 40 ms
32,020 KB
testcase_09 AC 96 ms
30,832 KB
testcase_10 AC 1,225 ms
30,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
	$n = trim(fgets(STDIN));
	for($i = 1; $i < $n/3+1; $i++) {
		for($j = $i; $j < $n*2/3; $j++) {
			if($j > $n - $i - $j) {
				break;
			}
			echo $i." ".$j." ".($n - $i - $j)."\n";
		}
	}
0