結果

問題 No.1089 三変数方程式
ユーザー masayamatumasayamatu
提出日時 2020-06-24 22:06:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 241 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-03 20:23:22
合計ジャッジ時間 14,887 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,136 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 63 ms
11,008 KB
testcase_03 AC 1,354 ms
11,008 KB
testcase_04 AC 91 ms
11,136 KB
testcase_05 TLE -
testcase_06 AC 463 ms
11,008 KB
testcase_07 AC 212 ms
11,136 KB
testcase_08 AC 1,665 ms
11,136 KB
testcase_09 AC 81 ms
11,008 KB
testcase_10 AC 1,389 ms
11,136 KB
testcase_11 AC 437 ms
11,136 KB
testcase_12 AC 1,094 ms
11,008 KB
testcase_13 AC 446 ms
11,136 KB
testcase_14 AC 1,312 ms
11,008 KB
testcase_15 AC 1,678 ms
11,008 KB
testcase_16 AC 1,448 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *


n = int(input())
ans = 0

for x in range(n+1):
    for y in range(n+1-x):
        z = n - x - y
        if (z < 0) or (z > n):
            continue
        elif(x + y + z) == n:
            ans += 1
 
print(ans)      
0