結果

問題 No.1257 変わった平均値
ユーザー marroncastlemarroncastle
提出日時 2020-10-16 23:18:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 225 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 53,560 KB
最終ジャッジ日時 2024-07-20 23:48:23
合計ジャッジ時間 2,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,356 KB
testcase_01 AC 38 ms
52,564 KB
testcase_02 AC 37 ms
51,904 KB
testcase_03 AC 38 ms
51,688 KB
testcase_04 AC 40 ms
51,876 KB
testcase_05 AC 38 ms
53,088 KB
testcase_06 AC 37 ms
53,040 KB
testcase_07 AC 37 ms
52,956 KB
testcase_08 AC 37 ms
52,340 KB
testcase_09 AC 37 ms
52,632 KB
testcase_10 AC 37 ms
52,156 KB
testcase_11 AC 37 ms
52,056 KB
testcase_12 AC 38 ms
51,756 KB
testcase_13 AC 38 ms
52,208 KB
testcase_14 AC 37 ms
52,420 KB
testcase_15 AC 37 ms
51,620 KB
testcase_16 AC 37 ms
52,856 KB
testcase_17 AC 36 ms
51,896 KB
testcase_18 AC 37 ms
52,616 KB
testcase_19 AC 37 ms
52,752 KB
testcase_20 AC 37 ms
51,628 KB
testcase_21 AC 37 ms
52,888 KB
testcase_22 AC 37 ms
51,696 KB
testcase_23 WA -
testcase_24 AC 38 ms
52,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())
D, E, F = map(int, input().split())
if sorted([A,B,C])==sorted([D,E,F]):
  print('Yes')
  if (A,B,C) != (D,E,F):
    print(2)
  else:
    print(1, 'C')
    print(1, 'C')
else:
  print('No')
0