Skip to content

Instantly share code, notes, and snippets.

@sakapon
Last active October 4, 2019 02:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
AtCoder Template
using System;
using System.Linq;
class A
{
static void Main()
{
Console.ReadLine();
var s = Console.ReadLine();
var n = int.Parse(Console.ReadLine());
var a = Console.ReadLine().Split().Select(int.Parse).ToArray();
var ps = new int[n].Select(_ => Console.ReadLine().Split().Select(int.Parse).ToArray()).ToArray();
Console.WriteLine(string.Join(" ", a));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment