結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-14 13:39:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 12,842 ms
コンパイル使用メモリ 407,520 KB
実行使用メモリ 53,740 KB
最終ジャッジ日時 2023-09-30 09:33:33
合計ジャッジ時間 17,756 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
53,464 KB
testcase_01 AC 336 ms
53,408 KB
testcase_02 AC 335 ms
53,596 KB
testcase_03 AC 338 ms
53,740 KB
testcase_04 AC 337 ms
53,536 KB
testcase_05 AC 337 ms
53,376 KB
testcase_06 AC 336 ms
53,408 KB
testcase_07 AC 333 ms
53,500 KB
testcase_08 AC 338 ms
53,620 KB
testcase_09 AC 337 ms
53,728 KB
testcase_10 AC 338 ms
53,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.Scanner;

fun main(args: Array<String>){
  val sc = Scanner(System.`in`);
  val b=sc.nextInt();
  val c=sc.nextInt();
  if(b==c){
    println("Yes");
  }else{
    println("No");
  }
}
0