結果
| 問題 | No.5002 stick xor |
| コンテスト | |
| ユーザー |
arbt
|
| 提出日時 | 2018-05-26 14:42:39 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,782 bytes |
| コンパイル時間 | 2,288 ms |
| 実行使用メモリ | 7,788 KB |
| スコア | 0 |
| 最終ジャッジ日時 | 2018-05-26 14:42:43 |
|
ジャッジサーバーID (参考情報) |
judge9 / |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 32 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 2.3.1.61919 (57c81319) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
class _Class
{
void _Do()
{
var NK = Split.ints();
var N = NK[0];
var K = NK[1];
var L = Split.ints();
for (int i = 0;i<N ; i++)
{
Split.ints();
}
//
for (int i=0;i<L.Length;i++ )
{
Console.WriteLine("1 1 1 1");
}
}
//
static void Main(string[] args)
{
_(args);
new _Class()._Do();
}
[Conditional("DEBUG")]
static void _(string[] args)
{
if (args.Length != 0 && File.Exists(args[0]))
Console.SetIn(new StreamReader(args[0]));
else
Console.Error.WriteLine("in");
}
}
static class Split
{
// 1
public static string[] strings()
{
return Console.ReadLine().Split();
}
// [2.1] -2,147,483,648 ~ +2,147,483,647
public static int[] ints()
{
var _s = Console.ReadLine().Split();
var x = new int[_s.Length];
for (var i = 0; i < _s.Length; i++)
x[i] = int.Parse(_s[i]);
return x;
}
// [2.2]
// -9,223,372,036,854,775,808 ~
// +9,223,372,036,854,775,807
public static long[] longs()
{
var _s = Console.ReadLine().Split();
var x = new long[_s.Length];
for (var i = 0; i < _s.Length; i++)
x[i] = long.Parse(_s[i]);
return x;
}
public static double[] doubles()
{
var _s = Console.ReadLine().Split();
var x = new double[_s.Length];
for (var i = 0; i < _s.Length; i++)
x[i] = double.Parse(_s[i]);
return x;
}
public static BigInteger[] bigs()
{
var _s = Console.ReadLine().Split();
var x = new BigInteger[_s.Length];
for (var i = 0; i < _s.Length; i++)
x[i] = BigInteger.Parse(_s[i]);
return x;
}
}
arbt