結果

問題 No.1257 変わった平均値
ユーザー marroncastlemarroncastle
提出日時 2020-10-16 23:18:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 225 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 86,768 KB
実行使用メモリ 71,308 KB
最終ジャッジ日時 2023-09-28 05:18:19
合計ジャッジ時間 3,219 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,092 KB
testcase_01 AC 61 ms
71,000 KB
testcase_02 AC 65 ms
70,864 KB
testcase_03 AC 64 ms
71,132 KB
testcase_04 AC 63 ms
71,164 KB
testcase_05 AC 63 ms
71,232 KB
testcase_06 AC 62 ms
71,252 KB
testcase_07 AC 63 ms
71,072 KB
testcase_08 AC 62 ms
71,028 KB
testcase_09 AC 64 ms
70,876 KB
testcase_10 AC 63 ms
70,868 KB
testcase_11 AC 62 ms
71,252 KB
testcase_12 AC 63 ms
71,004 KB
testcase_13 AC 61 ms
71,004 KB
testcase_14 AC 61 ms
71,308 KB
testcase_15 AC 60 ms
71,020 KB
testcase_16 AC 61 ms
71,020 KB
testcase_17 AC 62 ms
71,256 KB
testcase_18 AC 64 ms
71,008 KB
testcase_19 AC 61 ms
71,136 KB
testcase_20 AC 63 ms
71,248 KB
testcase_21 AC 64 ms
70,864 KB
testcase_22 AC 63 ms
71,152 KB
testcase_23 WA -
testcase_24 AC 64 ms
71,028 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