結果
問題 | No.264 じゃんけん |
ユーザー | バカらっく |
提出日時 | 2018-03-01 16:47:11 |
言語 | Swift (5.10.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 320 bytes |
コンパイル時間 | 802 ms |
コンパイル使用メモリ | 127,396 KB |
実行使用メモリ | 8,960 KB |
最終ジャッジ日時 | 2024-05-07 17:20:49 |
合計ジャッジ時間 | 1,418 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
8,832 KB |
testcase_01 | AC | 8 ms
8,832 KB |
testcase_02 | AC | 8 ms
8,960 KB |
testcase_03 | AC | 7 ms
8,960 KB |
testcase_04 | AC | 8 ms
8,960 KB |
testcase_05 | AC | 8 ms
8,960 KB |
testcase_06 | WA | - |
testcase_07 | AC | 8 ms
8,832 KB |
testcase_08 | AC | 8 ms
8,832 KB |
ソースコード
func IWon(myNum:Int, otherNum:Int)->String { if(myNum == otherNum) { return "Drew" } if(myNum == 0 && otherNum == 2) { return "Lost" } return myNum<otherNum ? "Won" : "Lost" } let inpt = readLine()!.split(separator:" ").map{Int($0)!} print(IWon(myNum:inpt[0], otherNum:inpt[1]))