結果

問題 No.8016 unordered_mapなるたけ落とすマン
ユーザー kuuso1
提出日時 2016-05-22 03:52:26
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 999 ms
コンパイル使用メモリ 110,572 KB
実行使用メモリ 55,296 KB
最終ジャッジ日時 2024-10-07 06:27:15
合計ジャッジ時間 18,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 20 MLE * 28
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class TEST{
	static void Main(){
		var d = ria();
		int N = d[0];
		int M = d[1];
		long[] A = rla();
		long[] B = rla();
		
		for(int i=0;i<M;i++){
			Console.Write(i==0?"{0}":" {0}",0);
		}
		Console.WriteLine();
	}
	
	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));}
}
0