結果

問題 No.1692 Expectations
ユーザー ch1channnch1channn
提出日時 2022-12-25 22:49:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 165,760 KB
最終ジャッジ日時 2024-11-19 14:42:44
合計ジャッジ時間 2,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,348 KB
testcase_01 AC 38 ms
52,240 KB
testcase_02 AC 38 ms
52,668 KB
testcase_03 AC 38 ms
52,576 KB
testcase_04 AC 39 ms
52,272 KB
testcase_05 AC 37 ms
52,560 KB
testcase_06 AC 38 ms
54,176 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
52,984 KB
testcase_10 WA -
testcase_11 AC 79 ms
96,424 KB
testcase_12 AC 39 ms
52,428 KB
testcase_13 AC 37 ms
51,624 KB
testcase_14 AC 46 ms
67,728 KB
testcase_15 AC 109 ms
130,796 KB
testcase_16 AC 46 ms
67,020 KB
testcase_17 AC 78 ms
99,920 KB
testcase_18 AC 54 ms
75,456 KB
testcase_19 AC 120 ms
140,548 KB
testcase_20 AC 116 ms
151,172 KB
testcase_21 AC 131 ms
165,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
	
n,m = map(int,input().split())
a = list(map(int,input().split()))
print(len(set(a)),1 if len(set(a))==0 else 0)
0