結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー kuuso1kuuso1
提出日時 2016-05-22 02:50:31
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,478 bytes
コンパイル時間 1,094 ms
コンパイル使用メモリ 116,748 KB
実行使用メモリ 53,912 KB
最終ジャッジ日時 2024-10-07 06:24:15
合計ジャッジ時間 42,410 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,584 KB
testcase_01 AC 30 ms
19,456 KB
testcase_02 AC 29 ms
19,456 KB
testcase_03 MLE -
testcase_04 AC 949 ms
46,948 KB
testcase_05 AC 934 ms
46,900 KB
testcase_06 AC 947 ms
46,744 KB
testcase_07 AC 931 ms
46,696 KB
testcase_08 AC 960 ms
46,584 KB
testcase_09 AC 941 ms
46,964 KB
testcase_10 AC 949 ms
46,720 KB
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 AC 908 ms
46,056 KB
testcase_21 AC 931 ms
46,056 KB
testcase_22 AC 938 ms
46,172 KB
testcase_23 AC 922 ms
45,916 KB
testcase_24 AC 964 ms
47,872 KB
testcase_25 AC 959 ms
47,744 KB
testcase_26 AC 964 ms
47,616 KB
testcase_27 AC 907 ms
47,104 KB
testcase_28 AC 939 ms
47,232 KB
testcase_29 AC 932 ms
47,104 KB
testcase_30 AC 919 ms
47,104 KB
testcase_31 AC 936 ms
46,976 KB
testcase_32 AC 927 ms
47,104 KB
testcase_33 AC 963 ms
46,720 KB
testcase_34 AC 928 ms
46,720 KB
testcase_35 AC 929 ms
46,592 KB
testcase_36 AC 919 ms
46,592 KB
testcase_37 AC 926 ms
46,464 KB
testcase_38 AC 917 ms
46,464 KB
testcase_39 AC 909 ms
46,464 KB
testcase_40 AC 916 ms
46,144 KB
testcase_41 AC 29 ms
19,200 KB
testcase_42 AC 29 ms
19,584 KB
testcase_43 AC 29 ms
19,456 KB
testcase_44 AC 114 ms
25,600 KB
testcase_45 AC 107 ms
25,856 KB
testcase_46 AC 111 ms
25,984 KB
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		long mod = (long)1e9+7;
		var D = new Dictionary<Pair,int>();
		var AM = A.Select(x=>new Pair(x,mod)).ToArray();
		var BM = B.Select(x=>new Pair(x,mod)).ToArray();
		
		for(int i=0;i<N;i++){
			if(!D.ContainsKey(AM[i]))D.Add(AM[i],0);
			D[AM[i]]++;
		}
		for(int i=0;i<M;i++){
			Console.Write(i==0?"{0}":" {0}",D.ContainsKey(BM[i])?D[BM[i]]:0);
		}
		Console.WriteLine();
		
		
		
	}
	int N,M;
	long[] A,B;
	struct Pair{
		public long Q,M;
		public long Mod;
		public Pair(long x,long mod){
			Mod=mod;
			Q=x/mod;
			M=x%mod;
		}
	}
	
	public Sol(){
		var d = ria();
		N = d[0];
		M = d[1];
		A = rla();
		B = rla();
	}

	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0