結果

問題 No.494 yukicoder
コンテスト
ユーザー yuppe19 😺
提出日時 2017-03-30 18:49:38
言語 PyPy2
(7.3.15)
結果
AC  
記録
実行時間 82 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 77,084 KB
最終ジャッジ日時 2025-12-03 23:18:07
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
s = raw_input()
t = 'yukicoder'

for a, b in zip(s, t):
    if a == '?':
        print b
0