結果
問題 | No.591 (^o^)/ |
ユーザー | Charlotte8687 |
提出日時 | 2017-11-13 14:35:13 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 60 ms / 2,000 ms |
コード長 | 943 bytes |
コンパイル時間 | 918 ms |
コンパイル使用メモリ | 108,084 KB |
実行使用メモリ | 22,528 KB |
最終ジャッジ日時 | 2024-05-03 20:24:49 |
合計ジャッジ時間 | 2,326 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
22,272 KB |
testcase_01 | AC | 59 ms
22,272 KB |
testcase_02 | AC | 59 ms
22,016 KB |
testcase_03 | AC | 60 ms
22,272 KB |
testcase_04 | AC | 60 ms
22,528 KB |
testcase_05 | AC | 60 ms
21,888 KB |
testcase_06 | AC | 59 ms
22,272 KB |
testcase_07 | AC | 59 ms
22,144 KB |
testcase_08 | AC | 59 ms
22,144 KB |
testcase_09 | AC | 59 ms
22,144 KB |
コンパイルメッセージ
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; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static void Main(string[] args) { string eye = Console.ReadLine(); if (!Regex.IsMatch(eye, @".") || eye.Length != 1) { Console.WriteLine("Invalid character was included"); return; } string mouth = Console.ReadLine(); if (!Regex.IsMatch(mouth, @".") || mouth.Length != 1) { Console.WriteLine("Invalid character was included"); return; } Output(eye, mouth); } public static void Output(string eye, string mouth) { string face = "(" + eye + mouth + eye + ")/"; Console.WriteLine(face); } } }