結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー c-yanc-yan
提出日時 2021-01-27 00:59:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,000 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 81,144 KB
最終ジャッジ日時 2024-06-23 22:49:27
合計ジャッジ時間 3,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,136 KB
testcase_01 AC 61 ms
13,056 KB
testcase_02 AC 54 ms
12,416 KB
testcase_03 AC 95 ms
15,616 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 75 ms
14,080 KB
testcase_10 AC 1,000 ms
81,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

result = []
for a in range(1, N):
    for b in range(a, N):
        c = N - a - b
        if c < b:
            break
        result.append('%d %d %d' % (a, b, c))
print(*result, sep='\n')
0