結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー mlihua09mlihua09
提出日時 2020-09-16 03:46:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 81,196 KB
最終ジャッジ日時 2024-06-22 02:59:35
合計ジャッジ時間 4,457 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
72,796 KB
testcase_01 AC 72 ms
76,124 KB
testcase_02 AC 69 ms
76,048 KB
testcase_03 AC 86 ms
76,520 KB
testcase_04 AC 37 ms
52,452 KB
testcase_05 AC 37 ms
53,588 KB
testcase_06 AC 36 ms
53,368 KB
testcase_07 AC 40 ms
53,140 KB
testcase_08 AC 56 ms
67,148 KB
testcase_09 AC 79 ms
76,136 KB
testcase_10 AC 409 ms
81,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

for a in range(1, N // 3 + 1):
    
    for b in range(a, (N - a) // 2 + 1):
        
        print(a, b, N - a - b)
0