結果

問題 No.8002 テストケース
ユーザー yuppe19 😺
提出日時 2015-09-07 12:54:13
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 245 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-07-19 04:53:05
合計ジャッジ時間 2,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
import sys, urllib, zipfile

url = 'http://yukicoder.me/problems/no/{}/testcase.zip'.format(1)
res = urllib.urlretrieve(url)
#print res
zf = zipfile.ZipFile(res[0])
#print zf
lines = sys.stdin.readlines()
#print lines
print -1
0