Java, 267.260 caracteres
Tudo bem, acho que minha solução não é tão diferente da resposta de Johannes Kuhn, mas, ao que parece, esse é um problema que pode ser bem tratado em Java; minha solução não é muito mais longa; e a saída é um pouco diferente, eu vou postar no entanto:
class A{public static void main(String[]a){java.awt.image.BufferedImage b=new java.awt.image.BufferedImage(130,16,2);b.createGraphics().drawString("本田技研工業株式会社",0,13);for(int y=0;y<2080;System.out.print((b.getRGB(y%130,y/130)<0?"#":" ")+(++y%130<1?"\n":"")));}}
Formatado como:
class A {
public static void main(String[]a) {
java.awt.image.BufferedImage b = new java.awt.image.BufferedImage(130, 16, 2);
b.createGraphics().drawString("本田技研工業株式会社", 0, 13);
for (int y = 0; y < 2080; System.out
.print((b.getRGB(y % 130, y / 130) < 0 ? "#" : " ")
+ (++y % 130 < 1 ? "\n" : "")))
;
}
}
Resultado:
# # # # # # # # # # #
# ########### # # #### ####### # # # # # # # # ## # # # #
########### # # # # ######## # # # ########## # # # # # # # ###### # ## ## ##### #
# # # # #### # # # # # ########### ### # # ############ # # # #
### # # # # # # # # # # # # # # # ###### ## # #####
# # # ########### # ####### ### ####### # ########### ### ####### ##### # # #
# # # # # # ## # # ## # # # # ######### # # # # # ### #
# # # # # # ### # # # # # # # # # # ### # # ########### # # # #
# ##### # # # # # # # # # # # # ########### # # # # # # # # # #
# # # # # # # ### ### # # # # # # # # # # # ## # # # # # #
# ########### # ## ## # # # # ########### ## # ### # # # # ##### # # # # # #######
# # # ## # # # # # # # # # # ######## ## #
'HONDA'
e afirmar que imprime o nome da empresa no GolfScript? (Eu só estou tentando apontar algumas brechas). Além disso, isso deve ser marcado como código-golfe ?