結果

問題 No.1692 Expectations
ユーザー 👑 rin204rin204
提出日時 2021-10-04 13:21:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 121 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 86,948 KB
実行使用メモリ 154,360 KB
最終ジャッジ日時 2023-09-29 18:54:52
合計ジャッジ時間 3,589 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,188 KB
testcase_01 AC 64 ms
71,348 KB
testcase_02 AC 64 ms
71,204 KB
testcase_03 AC 67 ms
71,344 KB
testcase_04 AC 65 ms
71,044 KB
testcase_05 AC 66 ms
71,276 KB
testcase_06 AC 70 ms
71,332 KB
testcase_07 AC 67 ms
71,256 KB
testcase_08 AC 63 ms
71,208 KB
testcase_09 AC 62 ms
71,532 KB
testcase_10 AC 101 ms
103,012 KB
testcase_11 AC 102 ms
102,500 KB
testcase_12 AC 67 ms
71,364 KB
testcase_13 AC 65 ms
71,268 KB
testcase_14 AC 73 ms
78,708 KB
testcase_15 AC 139 ms
134,608 KB
testcase_16 AC 75 ms
79,044 KB
testcase_17 AC 104 ms
107,612 KB
testcase_18 AC 79 ms
85,660 KB
testcase_19 AC 141 ms
124,684 KB
testcase_20 AC 140 ms
154,360 KB
testcase_21 AC 152 ms
137,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
print(len(set(A)), int(len(set(A)) == 1 and n == m))
0