結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-14 13:39:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 11,675 ms
コンパイル使用メモリ 428,320 KB
実行使用メモリ 55,404 KB
最終ジャッジ日時 2024-07-23 03:36:54
合計ジャッジ時間 16,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
55,160 KB
testcase_01 AC 348 ms
55,156 KB
testcase_02 AC 347 ms
55,180 KB
testcase_03 AC 347 ms
55,328 KB
testcase_04 AC 347 ms
55,320 KB
testcase_05 AC 347 ms
55,304 KB
testcase_06 AC 346 ms
55,196 KB
testcase_07 AC 346 ms
55,304 KB
testcase_08 AC 343 ms
55,152 KB
testcase_09 AC 341 ms
55,404 KB
testcase_10 AC 343 ms
55,324 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