LL Golf Hole 1 - tinyurl.comを使ってURLを短縮する
Posted feedbacks - D
1 2 3 4 5 6 7 8 9 | private import std.stdio, std.string, std.socket, std.socketstream;
void main() {
auto s = new SocketStream(new TcpSocket(new InternetAddress("tinyurl.com", 80)));
scope(exit) s.close;
s.writeString("GET /api-create.php?url=http://ll.jus.or.jp/2008/info/xgihyo HTTP/1.1\r\nHost: tinyurl.com\r\n\r\n");
foreach(char[] line; s) if(line.startsWith("http://")) writeln(line);
}
|


takano32
#6771()
[
Ruby
]
Rating-5/15=-0.33
tinyurl.com( http://tinyurl.com/ )のサービスを利用し、 http://ll.jus.or.jp/2008/info/xgihyo というURLを短縮しなさい。tinyurl.comのalias機能は使わないものとする。 なお、参考までに短縮したURLは http://tinyurl.com/5mngx8 となる。
余力のあるものはこのプログラムを短くしてみたり、短くしてみたり、短くしてみよ。
※LL Future実行委員の高野光弘です。この出題は LL Future公式の出題であり、優れたものについてはLL Golfのセッションでご紹介させていただくかもしれません。ご理解の上、ご投稿ください。また、LL Futureのチケットは現在も発売中です。よろしければ、メインイベントの方にもぜひご参加ください。
see: tinyurl.comでURLを短縮するRubyスクリプト
Rating-5/15=-0.33-0+
[ reply ]