結果
問題 | No.88 次はどっちだ |
ユーザー | toshiro_yanagi |
提出日時 | 2018-06-11 14:44:17 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 263 bytes |
コンパイル時間 | 2,882 ms |
コンパイル使用メモリ | 64,788 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 13:32:24 |
合計ジャッジ時間 | 3,712 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
import strutils let kuro = stdin.readLine var shiro: string if kuro == "oda": shiro = "yukiko" else: shiro = "oda" var b, w = 0 for i in 0 ..< 8: let bf = stdin.readLine b += bf.count('b') w += bf.count('w') if b <= w: echo kuro else: echo shiro