結果

問題 No.313 π
コンテスト
ユーザー yoza
提出日時 2015-12-06 01:44:26
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 306 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 226 ms
コンパイル使用メモリ 77,336 KB
最終ジャッジ日時 2025-12-03 18:21:43
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 32
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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