結果

問題 No.591 (^o^)/
ユーザー neko_the_shadow
提出日時 2017-11-13 22:51:06
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 1,191 ms
コンパイル使用メモリ 106,020 KB
実行使用メモリ 27,336 KB
最終ジャッジ日時 2024-11-25 00:33:07
合計ジャッジ時間 1,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program
{
    static void Main(string[] args)
    {
        var eye = Console.ReadLine();
        var mouse = Console.ReadLine();
        var face = String.Format("({0} {1} {0}) /", eye, mouse);
        Console.WriteLine(face);
    }
}

0