結果

問題 No.1919 Many Monster Battles
ユーザー とりゐとりゐ
提出日時 2022-04-04 00:02:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 290 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 139,088 KB
最終ジャッジ日時 2024-06-11 20:23:19
合計ジャッジ時間 6,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
60,152 KB
testcase_01 AC 33 ms
52,412 KB
testcase_02 AC 33 ms
53,844 KB
testcase_03 AC 79 ms
69,300 KB
testcase_04 AC 81 ms
69,520 KB
testcase_05 AC 81 ms
69,040 KB
testcase_06 AC 82 ms
68,480 KB
testcase_07 AC 80 ms
69,148 KB
testcase_08 AC 78 ms
68,532 KB
testcase_09 AC 79 ms
69,380 KB
testcase_10 AC 79 ms
68,860 KB
testcase_11 AC 79 ms
68,984 KB
testcase_12 AC 80 ms
68,744 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))

ans1,ans2=0,0
mod=10**9+7
for i in range(n):
  for j in range(n):
    A=abs(a[i]-a[j])
    B=abs(b[i]-b[j])
    if A>B:
      ans1+=A
      ans1%=mod
    if A<B:
      ans2+=B
      ans2%=mod
print(ans1,ans2)
0