Submission #132313
Source Code Expand
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace testest
{
class Program
{
static void Main(string[] args)
{
string[] s1 = Console.ReadLine().Split(' ');
string[] s2 = Console.ReadLine().Split(' ');
string[] s3 = Console.ReadLine().Split(' ');
string[] s4 = Console.ReadLine().Split(' ');
for (int i = 3; i >= 0; i--)
{
Console.Write(s4[i]);
if (i == 0)
Console.WriteLine();
else
Console.Write(' ');
}
for (int i = 3; i >= 0; i--)
{
Console.Write(s3[i]);
if (i == 0)
Console.WriteLine();
else
Console.Write(' ');
}
for (int i = 3; i >= 0; i--)
{
Console.Write(s2[i]);
if (i == 0)
Console.WriteLine();
else
Console.Write(' ');
}
for (int i = 3; i >= 0; i--)
{
Console.Write(s1[i]);
if (i == 0)
Console.WriteLine();
else
Console.Write(' ');
}
}
}
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - 回転 |
| User | yukicch |
| Language | C# (Mono 2.10.8.1) |
| Score | 100 |
| Code Size | 1464 Byte |
| Status | AC |
| Exec Time | 153 ms |
| Memory | 7452 KiB |
Judge Result
| Set Name | All | ||
|---|---|---|---|
| Score / Max Score | 100 / 100 | ||
| Status |
|
| Set Name | Test Cases |
|---|---|
| All | 00_sample_00.txt, 00_sample_01.txt, 01_all_dot.txt, 02_all_o.txt, 03_all_x.txt, rand_0.txt, rand_1.txt, rand_10.txt, rand_11.txt, rand_12.txt, rand_13.txt, rand_14.txt, rand_15.txt, rand_16.txt, rand_17.txt, rand_18.txt, rand_19.txt, rand_2.txt, rand_20.txt, rand_21.txt, rand_22.txt, rand_23.txt, rand_24.txt, rand_3.txt, rand_4.txt, rand_5.txt, rand_6.txt, rand_7.txt, rand_8.txt, rand_9.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 00_sample_00.txt | AC | 145 ms | 7424 KiB |
| 00_sample_01.txt | AC | 135 ms | 7412 KiB |
| 01_all_dot.txt | AC | 134 ms | 7396 KiB |
| 02_all_o.txt | AC | 143 ms | 7408 KiB |
| 03_all_x.txt | AC | 132 ms | 7388 KiB |
| rand_0.txt | AC | 130 ms | 7388 KiB |
| rand_1.txt | AC | 130 ms | 7412 KiB |
| rand_10.txt | AC | 134 ms | 7396 KiB |
| rand_11.txt | AC | 128 ms | 7388 KiB |
| rand_12.txt | AC | 148 ms | 7452 KiB |
| rand_13.txt | AC | 132 ms | 7408 KiB |
| rand_14.txt | AC | 131 ms | 7396 KiB |
| rand_15.txt | AC | 153 ms | 7388 KiB |
| rand_16.txt | AC | 139 ms | 7384 KiB |
| rand_17.txt | AC | 135 ms | 7376 KiB |
| rand_18.txt | AC | 135 ms | 7412 KiB |
| rand_19.txt | AC | 130 ms | 7412 KiB |
| rand_2.txt | AC | 136 ms | 7396 KiB |
| rand_20.txt | AC | 141 ms | 7396 KiB |
| rand_21.txt | AC | 138 ms | 7404 KiB |
| rand_22.txt | AC | 134 ms | 7380 KiB |
| rand_23.txt | AC | 140 ms | 7392 KiB |
| rand_24.txt | AC | 136 ms | 7396 KiB |
| rand_3.txt | AC | 143 ms | 7396 KiB |
| rand_4.txt | AC | 135 ms | 7376 KiB |
| rand_5.txt | AC | 139 ms | 7412 KiB |
| rand_6.txt | AC | 142 ms | 7392 KiB |
| rand_7.txt | AC | 132 ms | 7384 KiB |
| rand_8.txt | AC | 143 ms | 7388 KiB |
| rand_9.txt | AC | 144 ms | 7416 KiB |