結果
問題 |
No.1692 Expectations
|
ユーザー |
|
提出日時 | 2021-10-01 21:25:22 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 218 bytes |
コンパイル時間 | 285 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 29,512 KB |
最終ジャッジ日時 | 2024-07-19 10:28:30 |
合計ジャッジ時間 | 1,980 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 2 |
other | RE * 20 |
ソースコード
n, m = list(map(int, input().split())) A = list(map(int, input().split())) B = [a for a in A if a <= N] X = len(set(A)) if X == 1: if n == m: print(1, 1) else: print(1, 0) else: print(X, 0)