結果
| 問題 | No.313 π |
| コンテスト | |
| ユーザー |
shimomire
|
| 提出日時 | 2015-12-06 01:25:42 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 426 bytes |
| 記録 | |
| コンパイル時間 | 333 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 22,752 KB |
| 最終ジャッジ日時 | 2024-09-14 14:59:44 |
| 合計ジャッジ時間 | 5,923 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 32 |
ソースコード
import urllib.request
import binascii
s = input()
with urllib.request.urlopen('http://www.geocities.jp/unko_der/sample_01.txt') as response:
html = response.read()
for i in range(200002):
if i == 1:
continue
if i == 0:
if s[i] != '3':
print(s[i],3)
break
elif int(s[i]) != html[i] - 48:
print(s[i],html[i]-48)
break
shimomire