結果

問題 No.264 じゃんけん
ユーザー uchida_tuchida_t
提出日時 2023-04-13 12:43:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 327 ms / 5,000 ms
コード長 449 bytes
コンパイル時間 14,123 ms
コンパイル使用メモリ 433,040 KB
実行使用メモリ 56,952 KB
最終ジャッジ日時 2024-10-09 10:59:24
合計ジャッジ時間 17,387 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
56,928 KB
testcase_01 AC 312 ms
56,880 KB
testcase_02 AC 314 ms
56,952 KB
testcase_03 AC 314 ms
56,484 KB
testcase_04 AC 316 ms
56,824 KB
testcase_05 AC 316 ms
56,940 KB
testcase_06 AC 327 ms
56,752 KB
testcase_07 AC 314 ms
56,528 KB
testcase_08 AC 305 ms
56,664 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
	var (me ,enemy)=readLine()!!.split(" ").map(String::toInt)
	if (me == 0) {
		when(enemy) {
			0 -> println("Drew")
			1 -> println("Won")
			2 -> println("Lost")
		}
	} else if (me == 1) {
		when(enemy) {
			0 -> println("Lost")
			1 -> println("Drew")
			2 -> println("Won")
		}
	} else if (me == 2){
			when(enemy) {
			0 -> println("Won")
			1 -> println("Lost")
			2 -> println("Drew")
		}
	} else {
		return
	}
}
0