結果

問題 No.1257 変わった平均値
ユーザー marroncastlemarroncastle
提出日時 2020-10-16 23:22:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 922 ms
コンパイル使用メモリ 86,628 KB
実行使用メモリ 71,340 KB
最終ジャッジ日時 2023-09-28 05:20:38
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,100 KB
testcase_01 AC 62 ms
71,088 KB
testcase_02 AC 65 ms
71,108 KB
testcase_03 AC 62 ms
71,128 KB
testcase_04 AC 63 ms
71,104 KB
testcase_05 AC 62 ms
71,056 KB
testcase_06 AC 65 ms
71,172 KB
testcase_07 AC 62 ms
71,176 KB
testcase_08 AC 60 ms
70,852 KB
testcase_09 AC 61 ms
71,092 KB
testcase_10 AC 62 ms
71,048 KB
testcase_11 AC 62 ms
71,044 KB
testcase_12 AC 63 ms
70,856 KB
testcase_13 AC 62 ms
71,136 KB
testcase_14 AC 66 ms
71,172 KB
testcase_15 AC 64 ms
70,848 KB
testcase_16 AC 62 ms
71,048 KB
testcase_17 AC 63 ms
71,100 KB
testcase_18 AC 63 ms
71,124 KB
testcase_19 AC 61 ms
71,124 KB
testcase_20 AC 62 ms
71,192 KB
testcase_21 AC 62 ms
71,300 KB
testcase_22 AC 61 ms
71,216 KB
testcase_23 AC 61 ms
71,168 KB
testcase_24 AC 60 ms
71,340 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')
  print(2)
else:
  print('No')
0