結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー 👑 rin204rin204
提出日時 2022-02-12 22:02:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 81,632 KB
最終ジャッジ日時 2024-06-29 01:11:35
合計ジャッジ時間 4,549 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
71,936 KB
testcase_01 AC 67 ms
75,904 KB
testcase_02 AC 62 ms
76,544 KB
testcase_03 AC 73 ms
76,284 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 35 ms
51,328 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 51 ms
66,176 KB
testcase_09 AC 67 ms
75,904 KB
testcase_10 AC 308 ms
81,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for a in range(1, n + 1):
    for b in range(a, n + 1):
        c = n - a - b
        if c < b:
            break
        print(a, b, c)
        
0