結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー AEnAEn
提出日時 2022-05-17 14:46:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 87,204 KB
実行使用メモリ 82,636 KB
最終ジャッジ日時 2023-10-13 12:29:54
合計ジャッジ時間 6,512 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,536 KB
testcase_01 AC 100 ms
77,264 KB
testcase_02 AC 96 ms
77,212 KB
testcase_03 AC 109 ms
77,564 KB
testcase_04 AC 69 ms
71,316 KB
testcase_05 AC 70 ms
71,092 KB
testcase_06 AC 70 ms
71,052 KB
testcase_07 AC 72 ms
71,372 KB
testcase_08 AC 87 ms
76,528 KB
testcase_09 AC 106 ms
77,328 KB
testcase_10 AC 398 ms
82,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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