結果

問題 No.88 次はどっちだ
ユーザー nukosukenukosuke
提出日時 2016-10-19 18:40:57
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 422 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 137,288 KB
実行使用メモリ 139,020 KB
最終ジャッジ日時 2024-11-24 13:31:33
合計ジャッジ時間 5,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 399 ms
138,232 KB
testcase_01 AC 402 ms
138,352 KB
testcase_02 AC 414 ms
139,016 KB
testcase_03 AC 422 ms
138,224 KB
testcase_04 AC 389 ms
138,120 KB
testcase_05 AC 400 ms
137,968 KB
testcase_06 AC 411 ms
138,228 KB
testcase_07 AC 411 ms
138,492 KB
testcase_08 AC 406 ms
139,020 KB
testcase_09 AC 400 ms
138,484 KB
testcase_10 AC 401 ms
138,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

use v6;

my $S = get();
my $count = 0;

for 1..8 {
  my @B = get().split('');
  for 1..8 {
    if @B[$_] ne '.' {
      $count++;
    }
  }
}

given $S {
  when 'oda' { say ($count % 2 == 0 ?? 'oda' !! 'yukiko') }
  when 'yukiko' { say ($count % 2 == 0 ?? 'yukiko' !! 'oda') }
}
0