結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー tookunn_1213tookunn_1213
提出日時 2017-06-03 09:48:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 81,628 KB
最終ジャッジ日時 2024-09-22 04:22:40
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
74,108 KB
testcase_01 AC 75 ms
76,260 KB
testcase_02 AC 73 ms
76,116 KB
testcase_03 AC 89 ms
76,192 KB
testcase_04 AC 36 ms
52,204 KB
testcase_05 AC 37 ms
52,168 KB
testcase_06 AC 35 ms
51,752 KB
testcase_07 AC 40 ms
59,248 KB
testcase_08 AC 59 ms
70,612 KB
testcase_09 AC 83 ms
76,400 KB
testcase_10 AC 406 ms
81,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for a in range(1,N+1):
	for b in range(1,N+1-a):
		if N-a-b > 0 and a <= b <= N-a-b:
			print(a,b,N-a-b)
0