結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-06-21 18:19:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 81,260 KB
最終ジャッジ日時 2024-10-14 12:35:17
合計ジャッジ時間 5,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
72,600 KB
testcase_01 AC 78 ms
76,088 KB
testcase_02 AC 74 ms
76,144 KB
testcase_03 AC 89 ms
76,180 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
51,764 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 45 ms
58,848 KB
testcase_08 AC 62 ms
67,456 KB
testcase_09 AC 86 ms
76,216 KB
testcase_10 AC 441 ms
81,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in range(1,n+1):
    for j in range(i,n+1):
        rem=n-i-j
        if rem>=j:
            print(i,j,rem)
0