結果
| 問題 | No.1692 Expectations |
| コンテスト | |
| ユーザー |
eSeF
|
| 提出日時 | 2021-09-30 19:27:06 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 146 ms / 2,000 ms |
| コード長 | 141 bytes |
| 記録 | |
| コンパイル時間 | 534 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 87,048 KB |
| 最終ジャッジ日時 | 2026-04-02 16:00:59 |
| 合計ジャッジ時間 | 3,982 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 |
ソースコード
N, M = map(int,input().split())
type = len(set(map(int,input().split())))
if type == 1 and N == M:
print(type,1)
else:
print(type,0)
eSeF