結果
| 問題 |
No.8016 unordered_mapなるたけ落とすマン
|
| ユーザー |
kuuso1
|
| 提出日時 | 2016-05-22 03:54:53 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 429 bytes |
| コンパイル時間 | 970 ms |
| コンパイル使用メモリ | 105,472 KB |
| 実行使用メモリ | 34,944 KB |
| 最終ジャッジ日時 | 2024-10-07 06:27:52 |
| 合計ジャッジ時間 | 16,920 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 48 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
class TEST{
static void Main(){
var d = ria();
int N = d[0];
int M = d[1];
long[] A = 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));}
}
kuuso1