結果

問題 No.1692 Expectations
ユーザー hir355hir355
提出日時 2021-10-01 21:27:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 121 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 86,604 KB
実行使用メモリ 137,228 KB
最終ジャッジ日時 2023-09-26 16:26:39
合計ジャッジ時間 3,495 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,332 KB
testcase_01 AC 73 ms
71,200 KB
testcase_02 AC 73 ms
71,172 KB
testcase_03 AC 73 ms
71,100 KB
testcase_04 AC 72 ms
71,300 KB
testcase_05 AC 72 ms
71,148 KB
testcase_06 AC 74 ms
71,116 KB
testcase_07 AC 73 ms
71,152 KB
testcase_08 WA -
testcase_09 AC 74 ms
71,196 KB
testcase_10 WA -
testcase_11 AC 110 ms
102,276 KB
testcase_12 WA -
testcase_13 AC 76 ms
71,216 KB
testcase_14 AC 80 ms
77,248 KB
testcase_15 AC 129 ms
118,308 KB
testcase_16 AC 83 ms
77,716 KB
testcase_17 AC 104 ms
97,376 KB
testcase_18 AC 88 ms
81,948 KB
testcase_19 AC 138 ms
124,164 KB
testcase_20 AC 131 ms
127,988 KB
testcase_21 AC 137 ms
137,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
if n == 1:
    print(1, 1)
else:
    print(len(set(list(map(int, input().split())))), 0)
0