Submission #2549764


Source Code Expand

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ciq12_01
{
	class Program
	{
		static void Main(string[] args)
		{
			string[] split = Console.ReadLine().Split(' ');
			int a = int.Parse(split[0]);
			int b = int.Parse(split[1]);

			int swap;

			swap = a;
			a = b;
			b = swap;

			Console.WriteLine("{0} {1}", a, b);
		}
	}
}

Submission Info

Submission Time
Task A - スワップ
User kokoko
Language C# (Mono 4.6.2.0)
Score 100
Code Size 433 Byte
Status AC
Exec Time 21 ms
Memory 13140 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 8
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_13_69.txt, test_16_44.txt, test_40_40.txt, test_49_31.txt, test_51_74.txt, test_83_60.txt
Case Name Status Exec Time Memory
sample_01.txt AC 20 ms 11092 KB
sample_02.txt AC 21 ms 11092 KB
test_13_69.txt AC 20 ms 11092 KB
test_16_44.txt AC 20 ms 11092 KB
test_40_40.txt AC 20 ms 9044 KB
test_49_31.txt AC 20 ms 11092 KB
test_51_74.txt AC 21 ms 13140 KB
test_83_60.txt AC 21 ms 11092 KB