結果

問題 No.1089 三変数方程式
ユーザー rlangevinrlangevin
提出日時 2024-09-09 08:53:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 61,784 KB
最終ジャッジ日時 2024-09-09 08:53:47
合計ジャッジ時間 2,533 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,456 KB
testcase_01 AC 39 ms
52,064 KB
testcase_02 AC 46 ms
59,996 KB
testcase_03 AC 68 ms
59,924 KB
testcase_04 AC 46 ms
59,316 KB
testcase_05 AC 81 ms
61,080 KB
testcase_06 AC 53 ms
59,864 KB
testcase_07 AC 50 ms
60,256 KB
testcase_08 AC 75 ms
59,664 KB
testcase_09 AC 47 ms
59,712 KB
testcase_10 AC 71 ms
59,924 KB
testcase_11 AC 53 ms
59,928 KB
testcase_12 AC 64 ms
59,580 KB
testcase_13 AC 54 ms
60,556 KB
testcase_14 AC 67 ms
60,640 KB
testcase_15 AC 74 ms
59,924 KB
testcase_16 AC 70 ms
61,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = 0
for a in range(N + 1):
    for b in range(N + 1):
        if 0 <= N - a - b <= N:
            ans += 1
print(ans)
0