結果

問題 No.1089 三変数方程式
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-18 14:04:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-11-23 13:19:51
合計ジャッジ時間 2,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,712 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 50 ms
59,008 KB
testcase_03 AC 64 ms
59,904 KB
testcase_04 AC 51 ms
59,136 KB
testcase_05 AC 70 ms
60,160 KB
testcase_06 AC 60 ms
60,032 KB
testcase_07 AC 53 ms
59,392 KB
testcase_08 AC 67 ms
60,288 KB
testcase_09 AC 56 ms
59,264 KB
testcase_10 AC 66 ms
60,032 KB
testcase_11 AC 56 ms
59,904 KB
testcase_12 AC 63 ms
60,544 KB
testcase_13 AC 56 ms
59,904 KB
testcase_14 AC 63 ms
60,288 KB
testcase_15 AC 66 ms
60,032 KB
testcase_16 AC 64 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=0
for i in range(n):
    for j in range(i,n+1):
        if 0 <= i + j <= n:
            if i == j:
                ans+=1
            else:
                ans+=2
                
print(ans)
0