結果
問題 | No.522 Make Test Cases(テストケースを作る) |
ユーザー | GrayCoder |
提出日時 | 2017-06-02 23:27:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 281 bytes |
コンパイル時間 | 117 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,948 KB |
最終ジャッジ日時 | 2024-09-22 03:25:15 |
合計ジャッジ時間 | 8,086 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 156 ms
17,948 KB |
testcase_01 | TLE | - |
testcase_02 | AC | 1,297 ms
10,752 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
def main(): N = int(input()) a = N // 3 b = (N - 1) // 2 c = N - 2 for i in range(1, a + 1): for j in range(1, b + 1): for k in range(1, c + 1): if i + j + k == N and i <= j <= k: print(i, j, k) main()