結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー titiatitia
提出日時 2024-01-24 04:30:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 81,340 KB
最終ジャッジ日時 2024-09-28 22:08:50
合計ジャッジ時間 4,320 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
72,656 KB
testcase_01 AC 64 ms
76,188 KB
testcase_02 AC 67 ms
76,360 KB
testcase_03 AC 79 ms
76,240 KB
testcase_04 AC 35 ms
53,560 KB
testcase_05 AC 35 ms
52,516 KB
testcase_06 AC 35 ms
53,424 KB
testcase_07 AC 36 ms
54,164 KB
testcase_08 AC 53 ms
67,628 KB
testcase_09 AC 74 ms
76,248 KB
testcase_10 AC 334 ms
81,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

for a in range(1,N):
    for b in range(a,N):
        c=N-a-b

        if a<=b<=c and 1<=c:
            print(a,b,c)
        else:
            break
0