結果

問題 No.313 π
ユーザー mayoko_
提出日時 2015-12-06 08:55:26
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 319 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-09-14 15:13:21
合計ジャッジ時間 2,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import urllib2

def query(url):
    res = urllib2.urlopen(url)
    return res.read()

url = "http://www.geocities.jp/unko_der/sample_01.txt"
result = query(url)
result = "3"+result.lstrip("2")
s = raw_input()
for i in range(200002):
    if (result[i] != s[i]):
        print s[i],
        print result[i]
        break
0