結果

問題 No.1257 変わった平均値
ユーザー donutholedonuthole
提出日時 2020-10-16 23:20:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-20 23:49:37
合計ジャッジ時間 2,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
12,544 KB
testcase_01 AC 54 ms
12,416 KB
testcase_02 AC 53 ms
12,416 KB
testcase_03 AC 53 ms
12,416 KB
testcase_04 AC 54 ms
12,416 KB
testcase_05 AC 52 ms
12,416 KB
testcase_06 AC 49 ms
12,416 KB
testcase_07 AC 43 ms
12,416 KB
testcase_08 AC 40 ms
12,416 KB
testcase_09 AC 40 ms
12,416 KB
testcase_10 AC 40 ms
12,544 KB
testcase_11 AC 39 ms
12,416 KB
testcase_12 AC 39 ms
12,544 KB
testcase_13 AC 38 ms
12,544 KB
testcase_14 AC 39 ms
12,416 KB
testcase_15 AC 38 ms
12,544 KB
testcase_16 AC 41 ms
12,672 KB
testcase_17 AC 41 ms
12,672 KB
testcase_18 AC 41 ms
12,416 KB
testcase_19 AC 42 ms
12,416 KB
testcase_20 AC 40 ms
12,544 KB
testcase_21 AC 43 ms
12,544 KB
testcase_22 AC 42 ms
12,416 KB
testcase_23 AC 41 ms
12,544 KB
testcase_24 AC 42 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
import sys

# import re
import math
import collections
# import decimal
import bisect
import itertools
import fractions
# import functools
import copy
import heapq
import decimal
# import statistics
import queue
# import numpy as np

# sys.setrecursionlimit(10000001)
INF = 10 ** 20
MOD = 10 ** 9 + 7
# MOD = 998244353


def ni(): return int(sys.stdin.buffer.readline())
def ns(): return map(int, sys.stdin.buffer.readline().split())
def na(): return list(map(int, sys.stdin.buffer.readline().split()))


# ===CODE===

def main():
    l1 = na()
    l2 = na()
    flg1 = l1 == l2
    l1.sort()
    l2.sort()
    flg2 = l1 == l2
    flg3 = len(set(l1)) == 3

    if flg2:
        print("Yes")
        print(2)
    else:
        print("No")


if __name__ == '__main__':
    main()
0