結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー kohei2019kohei2019
提出日時 2022-02-06 16:40:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,184 KB
最終ジャッジ日時 2024-06-11 13:49:13
合計ジャッジ時間 4,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
72,704 KB
testcase_01 AC 73 ms
76,800 KB
testcase_02 AC 72 ms
76,544 KB
testcase_03 AC 89 ms
76,416 KB
testcase_04 AC 38 ms
51,456 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 35 ms
51,584 KB
testcase_07 AC 43 ms
58,752 KB
testcase_08 AC 58 ms
67,712 KB
testcase_09 AC 81 ms
76,416 KB
testcase_10 AC 346 ms
81,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

for i in range(1,N+1):
    for j in range(i,N+1):
        k = N-i-j
        if k >= j:
            print(i,j,k)
0