結果

問題 No.1089 三変数方程式
ユーザー DrDrpilotDrDrpilot
提出日時 2022-04-13 14:14:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 131 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-06 01:28:44
合計ジャッジ時間 15,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 57 ms
10,624 KB
testcase_03 AC 1,344 ms
10,624 KB
testcase_04 AC 86 ms
10,624 KB
testcase_05 TLE -
testcase_06 AC 458 ms
10,624 KB
testcase_07 AC 222 ms
10,496 KB
testcase_08 AC 1,725 ms
10,624 KB
testcase_09 AC 76 ms
10,496 KB
testcase_10 AC 1,602 ms
10,496 KB
testcase_11 AC 465 ms
10,624 KB
testcase_12 AC 1,138 ms
10,752 KB
testcase_13 AC 436 ms
10,624 KB
testcase_14 AC 1,249 ms
10,624 KB
testcase_15 AC 1,754 ms
10,624 KB
testcase_16 AC 1,490 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=0
for x in range(n+1):
    for y in range(n+1):
        z=n-(x+y)
        if z>=0:
            ans+=1
print(ans)
0