結果

問題 No.1257 変わった平均値
ユーザー KudeKude
提出日時 2020-10-16 22:25:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 87,016 KB
実行使用メモリ 71,556 KB
最終ジャッジ日時 2023-09-28 03:48:23
合計ジャッジ時間 3,067 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
71,316 KB
testcase_01 AC 64 ms
71,360 KB
testcase_02 AC 63 ms
71,440 KB
testcase_03 AC 62 ms
71,376 KB
testcase_04 AC 66 ms
71,144 KB
testcase_05 AC 63 ms
71,436 KB
testcase_06 AC 63 ms
71,148 KB
testcase_07 AC 63 ms
71,384 KB
testcase_08 AC 65 ms
71,284 KB
testcase_09 AC 63 ms
71,336 KB
testcase_10 AC 65 ms
71,360 KB
testcase_11 AC 65 ms
71,300 KB
testcase_12 AC 66 ms
71,500 KB
testcase_13 AC 64 ms
71,356 KB
testcase_14 AC 62 ms
71,152 KB
testcase_15 AC 64 ms
71,432 KB
testcase_16 AC 63 ms
71,312 KB
testcase_17 AC 64 ms
71,492 KB
testcase_18 AC 65 ms
71,380 KB
testcase_19 AC 64 ms
71,288 KB
testcase_20 AC 64 ms
71,556 KB
testcase_21 AC 60 ms
71,424 KB
testcase_22 AC 61 ms
71,484 KB
testcase_23 AC 61 ms
71,476 KB
testcase_24 AC 65 ms
71,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = tuple(map(int, input().split()))
q = tuple(map(int, input().split()))

ps = sorted(map(abs, p))
qs = sorted(map(abs, q))
if ps != qs:
    print('No')
    exit()

print('Yes')
print(2)
0