結果
問題 |
No.8016 unordered_mapなるたけ落とすマン
|
ユーザー |
![]() |
提出日時 | 2016-05-22 03:56:08 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 409 bytes |
コンパイル時間 | 975 ms |
コンパイル使用メモリ | 109,012 KB |
実行使用メモリ | 32,308 KB |
最終ジャッジ日時 | 2024-10-07 06:28:13 |
合計ジャッジ時間 | 14,598 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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]; 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));} }