結果

問題 No.1692 Expectations
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-21 15:53:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 90 bytes
コンパイル時間 5,265 ms
コンパイル使用メモリ 81,824 KB
実行使用メモリ 134,156 KB
最終ジャッジ日時 2024-10-21 15:53:12
合計ジャッジ時間 3,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,284 KB
testcase_01 WA -
testcase_02 AC 41 ms
52,920 KB
testcase_03 AC 41 ms
52,004 KB
testcase_04 AC 41 ms
52,884 KB
testcase_05 AC 42 ms
52,512 KB
testcase_06 AC 38 ms
52,636 KB
testcase_07 AC 42 ms
52,756 KB
testcase_08 AC 41 ms
52,704 KB
testcase_09 WA -
testcase_10 AC 85 ms
96,640 KB
testcase_11 WA -
testcase_12 AC 40 ms
52,320 KB
testcase_13 AC 37 ms
52,060 KB
testcase_14 AC 48 ms
64,060 KB
testcase_15 AC 100 ms
112,756 KB
testcase_16 AC 49 ms
65,480 KB
testcase_17 AC 74 ms
88,496 KB
testcase_18 AC 54 ms
71,412 KB
testcase_19 WA -
testcase_20 AC 95 ms
124,424 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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