結果

問題 No.1089 三変数方程式
ユーザー Konton7Konton7
提出日時 2020-06-26 21:28:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 60,800 KB
最終ジャッジ日時 2024-07-04 19:40:23
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
58,624 KB
testcase_01 AC 57 ms
59,008 KB
testcase_02 AC 59 ms
59,392 KB
testcase_03 AC 80 ms
60,544 KB
testcase_04 AC 61 ms
59,392 KB
testcase_05 AC 78 ms
59,904 KB
testcase_06 AC 81 ms
60,160 KB
testcase_07 AC 64 ms
60,160 KB
testcase_08 AC 80 ms
59,776 KB
testcase_09 AC 62 ms
60,032 KB
testcase_10 AC 82 ms
60,416 KB
testcase_11 AC 81 ms
60,288 KB
testcase_12 AC 84 ms
60,800 KB
testcase_13 AC 83 ms
60,416 KB
testcase_14 AC 81 ms
60,672 KB
testcase_15 AC 76 ms
60,160 KB
testcase_16 AC 81 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 0
for i in range(3001):
    for j in range(3001):
        k = n - i - j
        if 0 <= k <= 3000:
            ans += 1
print(ans)
0