結果
| 問題 |
No.400 鏡
|
| コンテスト | |
| ユーザー |
shimadandy
|
| 提出日時 | 2016-09-21 19:03:14 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 360 bytes |
| コンパイル時間 | 2,205 ms |
| コンパイル使用メモリ | 107,608 KB |
| 実行使用メモリ | 25,560 KB |
| 最終ジャッジ日時 | 2024-11-17 10:31:32 |
| 合計ジャッジ時間 | 3,172 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 4 |
| other | WA * 8 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Collections.Generic;
class Program
{
/// <summary>
/// プログラムのエントリポイント
/// </summary>
/// <param name="args"></param>
static void Main(string[] args)
{
char[] c = Console.ReadLine().ToCharArray();
Array.Reverse(c);
Console.WriteLine(new string(c));
}
}
shimadandy