結果
| 問題 |
No.2322 MMA文字列
|
| コンテスト | |
| ユーザー |
bluemegane
|
| 提出日時 | 2023-06-03 07:23:44 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 172 bytes |
| コンパイル時間 | 1,706 ms |
| コンパイル使用メモリ | 106,248 KB |
| 実行使用メモリ | 25,528 KB |
| 最終ジャッジ日時 | 2024-12-29 02:32:57 |
| 合計ジャッジ時間 | 3,220 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 14 WA * 5 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
public class Hello
{
static void Main()
{
var s = Console.ReadLine().Trim();
Console.WriteLine(s[0] == s[1] ? "Yes" : "No");
}
}
bluemegane