結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー kurimupykurimupy
提出日時 2020-06-18 16:02:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 121 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 81,252 KB
最終ジャッジ日時 2024-07-03 12:51:31
合計ジャッジ時間 3,268 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
72,456 KB
testcase_01 AC 70 ms
76,024 KB
testcase_02 AC 67 ms
76,064 KB
testcase_03 AC 80 ms
76,528 KB
testcase_04 AC 33 ms
52,000 KB
testcase_05 AC 35 ms
52,436 KB
testcase_06 AC 33 ms
52,416 KB
testcase_07 AC 36 ms
52,984 KB
testcase_08 AC 56 ms
68,920 KB
testcase_09 AC 77 ms
76,268 KB
testcase_10 AC 348 ms
81,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for i in range(1,N//3+10):
    for j in range(i,N+1):
        if i<=j<=N-i-j:
            print(i,j,N-i-j)
0