結果

問題 No.1257 変わった平均値
ユーザー tanon710tanon710
提出日時 2020-10-17 00:52:39
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 87,284 KB
実行使用メモリ 71,704 KB
最終ジャッジ日時 2023-09-28 07:08:22
合計ジャッジ時間 2,752 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
71,188 KB
testcase_01 AC 62 ms
71,332 KB
testcase_02 AC 63 ms
71,412 KB
testcase_03 AC 61 ms
71,624 KB
testcase_04 AC 60 ms
71,404 KB
testcase_05 AC 61 ms
71,704 KB
testcase_06 AC 59 ms
71,204 KB
testcase_07 AC 61 ms
71,304 KB
testcase_08 AC 62 ms
71,384 KB
testcase_09 AC 62 ms
71,456 KB
testcase_10 AC 62 ms
71,324 KB
testcase_11 AC 61 ms
71,516 KB
testcase_12 AC 63 ms
71,496 KB
testcase_13 AC 63 ms
71,508 KB
testcase_14 AC 62 ms
71,704 KB
testcase_15 AC 61 ms
71,464 KB
testcase_16 AC 61 ms
71,324 KB
testcase_17 AC 59 ms
71,564 KB
testcase_18 AC 60 ms
71,528 KB
testcase_19 AC 60 ms
71,188 KB
testcase_20 AC 61 ms
71,468 KB
testcase_21 AC 61 ms
71,328 KB
testcase_22 AC 60 ms
71,328 KB
testcase_23 AC 59 ms
71,324 KB
testcase_24 AC 61 ms
71,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c=map(int,input().split())
d,e,f=map(int,input().split())
s=set([a,b,c])
t=set([d,e,f])
if len(s-t)!=0:
    print('No')
else:
    print('Yes')
    print(2)
0