結果

問題 No.1257 変わった平均値
ユーザー tanon710tanon710
提出日時 2020-10-17 00:49:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 87,204 KB
実行使用メモリ 71,700 KB
最終ジャッジ日時 2023-09-28 07:08:19
合計ジャッジ時間 2,845 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,384 KB
testcase_01 AC 61 ms
71,324 KB
testcase_02 AC 60 ms
71,328 KB
testcase_03 AC 60 ms
71,564 KB
testcase_04 AC 61 ms
71,648 KB
testcase_05 AC 65 ms
71,444 KB
testcase_06 AC 60 ms
71,688 KB
testcase_07 AC 65 ms
71,452 KB
testcase_08 AC 61 ms
71,552 KB
testcase_09 AC 60 ms
71,520 KB
testcase_10 AC 63 ms
71,336 KB
testcase_11 AC 61 ms
71,524 KB
testcase_12 AC 61 ms
71,640 KB
testcase_13 AC 60 ms
71,384 KB
testcase_14 AC 60 ms
71,580 KB
testcase_15 AC 61 ms
71,208 KB
testcase_16 AC 59 ms
71,192 KB
testcase_17 AC 59 ms
71,496 KB
testcase_18 AC 61 ms
71,524 KB
testcase_19 AC 64 ms
71,328 KB
testcase_20 AC 66 ms
71,384 KB
testcase_21 AC 61 ms
71,340 KB
testcase_22 AC 61 ms
71,668 KB
testcase_23 WA -
testcase_24 AC 61 ms
71,444 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')
    if a==d and b==e and c==f:
        pass
    else:
        print(2)
0