結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 63 ms
10,624 KB
testcase_03 AC 1,464 ms
10,624 KB
testcase_04 AC 97 ms
10,624 KB
testcase_05 TLE -
testcase_06 AC 513 ms
10,752 KB
testcase_07 AC 238 ms
10,624 KB
testcase_08 AC 1,795 ms
10,752 KB
testcase_09 AC 79 ms
10,624 KB
testcase_10 AC 1,671 ms
10,752 KB
testcase_11 AC 496 ms
10,752 KB
testcase_12 AC 1,238 ms
10,752 KB
testcase_13 AC 508 ms
10,624 KB
testcase_14 AC 1,375 ms
10,624 KB
testcase_15 AC 1,874 ms
10,624 KB
testcase_16 AC 1,593 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

cnt = 0
for x in range(N + 1):
    for y in range(N + 1):
        z = N - x - y
        if z >= 0:
            cnt += 1

print(cnt)
0