結果
問題 | No.88 次はどっちだ |
ユーザー | toshiro_yanagi |
提出日時 | 2018-05-28 19:49:06 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 269 bytes |
コンパイル時間 | 2,783 ms |
コンパイル使用メモリ | 64,252 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 07:52:03 |
合計ジャッジ時間 | 3,386 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
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 w mod 2 == 0: echo kuro else: echo shiro