結果

問題 No.1089 三変数方程式
ユーザー DrDrpilotDrDrpilot
提出日時 2022-04-13 14:12:34
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 150 bytes
コンパイル時間 731 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 766,156 KB
最終ジャッジ日時 2024-06-06 01:27:29
合計ジャッジ時間 6,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,632 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 60 ms
78,848 KB
testcase_03 AC 1,559 ms
493,356 KB
testcase_04 AC 100 ms
107,508 KB
testcase_05 MLE -
testcase_06 AC 426 ms
227,528 KB
testcase_07 AC 215 ms
157,104 KB
testcase_08 TLE -
testcase_09 AC 71 ms
89,360 KB
testcase_10 MLE -
testcase_11 AC 409 ms
227,800 KB
testcase_12 AC 1,181 ms
414,604 KB
testcase_13 AC 412 ms
227,380 KB
testcase_14 AC 1,296 ms
461,556 KB
testcase_15 TLE -
testcase_16 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=set()
for x in range(n+1):
    for y in range(n+1):
        z=n-(x+y)
        if z>=0:
            ans.add((x,y,z))
print(len(ans))
0