結果

問題 No.1034 テスターのふっぴーさん
ユーザー KodaiKodai
提出日時 2020-04-25 00:12:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 637 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-10-15 04:02:11
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
15,872 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,496 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
ans = []
for count in range(Q):
    N, I, J = list(map(int, input().split()))
    base_I = I if I < N - 1 - I else N - 1 - I
    base_J = J if J < N - 1 - J else N - 1 - J
    base = 0
    if I - J <= 0:
        for i in range(base_I if base_I < base_J else base_J):
            base += (N - ((2 * i) + 1)) * 4
        base += I + J - 2 * (base_I if base_I < base_J else base_J)
    else:
        for i in range((base_I if base_I < base_J else base_J) + 1):
            base += (N - ((2 * i) + 1)) * 4
        base -= (I + J) - 2 * (base_I if base_I < base_J else base_J)
    ans.append(base)

for i in ans:
    print(i)
0