結果

問題 No.494 yukicoder
コンテスト
ユーザー kiricreamcheese
提出日時 2017-03-24 23:01:44
言語 PyPy2
(7.3.15)
結果
RE  
記録
実行時間 -
コード長 125 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 77,396 KB
最終ジャッジ日時 2025-12-03 23:17:16
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#!/usr/bin/env python

import re

S=raw_input().strip()
correct='yukicoder'

order=re.search(r'\n',S).start()
print  S[order]
0