結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー tetsutetsu
提出日時 2017-06-02 22:37:23
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 148 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 13,344 KB
最終ジャッジ日時 2024-09-21 22:33:47
合計ジャッジ時間 8,767 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
11,776 KB
testcase_01 TLE -
testcase_02 AC 1,473 ms
6,272 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
for a in range(1, n/3+1):
    for b in range(a, n):
        for c in range(b, n):
            if a+b+c==n:
                print a, b, c
0