結果

問題 No.1034 テスターのふっぴーさん
ユーザー roarisroaris
提出日時 2020-04-24 22:14:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-10-15 02:59:49
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,696 KB
testcase_01 AC 40 ms
54,140 KB
testcase_02 AC 41 ms
53,512 KB
testcase_03 AC 40 ms
53,816 KB
testcase_04 AC 42 ms
54,120 KB
testcase_05 AC 41 ms
53,268 KB
testcase_06 AC 44 ms
54,120 KB
testcase_07 AC 41 ms
53,804 KB
testcase_08 AC 41 ms
53,476 KB
testcase_09 AC 41 ms
53,644 KB
testcase_10 AC 41 ms
53,292 KB
testcase_11 AC 40 ms
53,656 KB
testcase_12 AC 41 ms
53,808 KB
testcase_13 AC 41 ms
54,196 KB
testcase_14 AC 40 ms
54,492 KB
testcase_15 AC 40 ms
53,332 KB
testcase_16 AC 40 ms
54,288 KB
testcase_17 AC 40 ms
53,884 KB
testcase_18 AC 40 ms
53,680 KB
testcase_19 AC 40 ms
53,588 KB
testcase_20 AC 41 ms
54,324 KB
testcase_21 AC 41 ms
53,776 KB
testcase_22 AC 41 ms
54,508 KB
testcase_23 AC 41 ms
54,132 KB
testcase_24 AC 42 ms
54,120 KB
testcase_25 AC 41 ms
54,328 KB
testcase_26 AC 41 ms
54,276 KB
testcase_27 AC 41 ms
53,900 KB
testcase_28 AC 42 ms
53,884 KB
testcase_29 AC 42 ms
54,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

Q = int(input())

for _ in range(Q):
    N, I, J = map(int, input().split())
    a = min(I, N-1-I, J, N-1-J)
    ans = (4*N-4+4*N-4-8*(a-1))*a//2
    
    if I==a:
        ans += J-a
    elif J==N-1-a:
        ans += N-1-a-a+I-a
    elif I==N-1-a:
        ans += 2*(N-1-a-a)+N-1-a-J
    else:
        ans += 3*(N-1-a-a)+N-1-a-I
    
    print(ans)
0