結果
| 問題 |
No.8064 う し た ぷ に き あ く ん 笑
|
| コンテスト | |
| ユーザー |
keymoon
|
| 提出日時 | 2021-01-15 19:38:07 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 2,000 ms |
| コード長 | 570 bytes |
| コンパイル時間 | 958 ms |
| コンパイル使用メモリ | 109,820 KB |
| 実行使用メモリ | 20,480 KB |
| 最終ジャッジ日時 | 2024-11-26 11:18:45 |
| 合計ジャッジ時間 | 4,219 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 47 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
public static class P
{
public static void Main()
{
var list = new[] { "う し", "う あ", "ん 笑", "た ぷ", "く ん", "ぷ に", "し き", "あ く", "う く", "あ 笑", "う ん", "し ぷ", "う き", "く 笑", "う 笑", "に き", "ぷ 笑", "た き", "た ん", "し あ", "し ん", "う う", "う た", "き 笑", "に く", "笑 笑" };
Console.WriteLine(string.Join(" ", Console.ReadLine().Select(x => list[x - 'a'])) + " ");
}
}
keymoon