結果

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

ソースコード

diff #

from urllib import urlopen

s = raw_input()

url = urlopen('http://www.geocities.jp/unko_der/sample_01.txt')
html = url.read()
print(html[:1000])
if s[0] != '3':
    print("%s 3" % s[0])
else:
    for (a, b) in zip(s[2:], html[2:]):
        if a != b:
            print("%s %s" % (a, b))
            break
0