結果

問題 No.1089 三変数方程式
ユーザー masayamatumasayamatu
提出日時 2020-06-24 22:02:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 235 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-07-03 20:21:53
合計ジャッジ時間 5,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 28 ms
11,136 KB
testcase_02 AC 74 ms
11,136 KB
testcase_03 AC 1,819 ms
11,136 KB
testcase_04 AC 113 ms
11,136 KB
testcase_05 TLE -
testcase_06 AC 596 ms
11,008 KB
testcase_07 AC 268 ms
11,136 KB
testcase_08 TLE -
testcase_09 AC 86 ms
11,136 KB
testcase_10 AC 1,908 ms
11,008 KB
testcase_11 AC 574 ms
11,136 KB
testcase_12 AC 1,442 ms
11,008 KB
testcase_13 AC 612 ms
11,008 KB
testcase_14 AC 1,709 ms
11,136 KB
testcase_15 TLE -
testcase_16 AC 1,887 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):
        z = n - x - y
        if (z < 0) or (z > n):
            continue
        elif(x + y + z) == n:
            ans += 1
 
print(ans)  
0