結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | yuppe19 😺 |
提出日時 | 2015-09-07 11:47:52 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 268 bytes |
コンパイル時間 | 296 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 10,236 KB |
最終ジャッジ日時 | 2024-07-19 04:52:40 |
合計ジャッジ時間 | 1,431 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
#!/usr/bin/python import urllib, urllib2 url = 'http://yukicoder.me/problems/{}/file'.format(267) data = {'action': 'get', 'which': 'in', 'file': '1.txt'} res = urllib2.urlopen(url, urllib.urlencode(data)) #print res #print res.read() raw_input() print 'Hello World!'