結果

問題 No.88 次はどっちだ
ユーザー あかりきあかりき
提出日時 2021-02-08 08:41:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 212 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 53,312 KB
最終ジャッジ日時 2024-07-05 05:09:12
合計ジャッジ時間 1,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,156 KB
testcase_01 AC 37 ms
52,824 KB
testcase_02 AC 37 ms
51,952 KB
testcase_03 AC 36 ms
52,960 KB
testcase_04 AC 37 ms
52,332 KB
testcase_05 AC 37 ms
52,748 KB
testcase_06 AC 37 ms
52,616 KB
testcase_07 AC 37 ms
52,924 KB
testcase_08 AC 37 ms
52,348 KB
testcase_09 AC 37 ms
52,808 KB
testcase_10 AC 37 ms
53,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
l=[list(input()) for i in range(8)]
ct=0
for i in range(8):
  for j in range(8):
    if l[i][j]!='.':
      ct+=1
if ct%2==0:
  print(s)
else:
  if s=='oda':
    print('yukiko')
  else:
    print('oda')
0