結果

問題 No.1692 Expectations
ユーザー AzumabashiAzumabashi
提出日時 2022-01-27 19:06:28
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 173 bytes
コンパイル時間 3,962 ms
コンパイル使用メモリ 68,776 KB
実行使用メモリ 33,468 KB
最終ジャッジ日時 2023-08-26 20:39:40
合計ジャッジ時間 6,170 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
4,380 KB
testcase_10 WA -
testcase_11 AC 46 ms
28,088 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 6 ms
5,080 KB
testcase_15 AC 41 ms
21,660 KB
testcase_16 AC 5 ms
5,048 KB
testcase_17 AC 25 ms
12,760 KB
testcase_18 AC 10 ms
7,032 KB
testcase_19 AC 56 ms
32,160 KB
testcase_20 AC 42 ms
23,212 KB
testcase_21 AC 54 ms
33,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sets, sequtils, strutils

var n, m: int
(n, m) = map(readLine(stdin).split(), parseInt)
let a = map(readLine(stdin).split(), parseInt)

echo toHashSet(a).len, ' ', 0
0