結果

問題 No.185 和風
ユーザー shamioshamio
提出日時 2020-06-01 18:54:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 534 ms / 1,000 ms
コード長 223 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,436 KB
最終ジャッジ日時 2024-11-22 04:49:16
合計ジャッジ時間 4,829 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
44,284 KB
testcase_01 AC 526 ms
44,436 KB
testcase_02 AC 526 ms
44,324 KB
testcase_03 AC 532 ms
44,312 KB
testcase_04 AC 526 ms
44,180 KB
testcase_05 AC 525 ms
44,312 KB
testcase_06 AC 534 ms
44,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n = int(input())
xy = np.array([list(map(int, input().split())) for _ in range(n)], np.int64)

z = xy[:, 1] - xy[:, 0]

num = z.min()

if (z == num).all() and num > 0:
    print(num)
else:
    print(-1)
0