結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-18 01:01:37
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 11,914 ms
コンパイル使用メモリ 142,504 KB
実行使用メモリ 159,788 KB
最終ジャッジ日時 2023-09-30 09:35:41
合計ジャッジ時間 13,271 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
27,724 KB
testcase_01 AC 48 ms
27,616 KB
testcase_02 AC 49 ms
27,988 KB
testcase_03 AC 48 ms
27,792 KB
testcase_04 AC 49 ms
29,912 KB
testcase_05 AC 47 ms
28,192 KB
testcase_06 AC 48 ms
27,684 KB
testcase_07 AC 47 ms
28,156 KB
testcase_08 AC 48 ms
27,784 KB
testcase_09 AC 48 ms
29,928 KB
testcase_10 AC 48 ms
159,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  Determining projects to restore...
  Restored /home/judge/data/code/main.csproj (in 140 ms).
.NET 向け Microsoft (R) Build Engine バージョン 17.0.0-preview-21470-01+cb055d28f
Copyright (C) Microsoft Corporation.All rights reserved.

  プレビュー版の .NET を使用しています。https://aka.ms/dotnet-core-preview をご覧ください
  main -> /home/judge/data/code/bin/Release/net6.0/main.dll
  main -> /home/judge/data/code/bin/Release/net6.0/publish/

ソースコード

diff #

using System;

class UnfairRps{
  static void Main(){
    var line=Console.ReadLine().Split();
    int b=int.Parse(line[0]);
    int c=int.Parse(line[1]);
    if(b==c){
      Console.Write("Yes\n");
    }else{
      Console.Write("No\n");
    }
  }
}
0