結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー kazuppakazuppa
提出日時 2024-09-07 15:56:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 76,920 KB
最終ジャッジ日時 2024-09-07 15:56:11
合計ジャッジ時間 3,215 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
66,028 KB
testcase_01 AC 65 ms
75,912 KB
testcase_02 AC 53 ms
73,568 KB
testcase_03 AC 67 ms
75,912 KB
testcase_04 AC 33 ms
51,880 KB
testcase_05 AC 34 ms
53,028 KB
testcase_06 AC 34 ms
52,736 KB
testcase_07 AC 37 ms
53,032 KB
testcase_08 AC 48 ms
64,912 KB
testcase_09 AC 59 ms
76,240 KB
testcase_10 AC 205 ms
76,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(1, n - 1):
    for j in range(i, n - i):
        if n - i - j >= j:
            print(f"{i} {j} {n-i-j}")
        else:
            break
0