Created
October 20, 2013 08:33
-
-
Save Nucleareal/7066514 to your computer and use it in GitHub Desktop.
僕はこれが限界です。
@C#er各位 もっと短くしてください。よろしくお願いします。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
class T | |
{ | |
public static void Main() | |
{ | |
var s = ""; var r = new Random(); int i=0; | |
Console.WriteLine(Enumerable.Range(0, 10000).ToList().All(x => | |
{ i = x; var c = "おちんぽ"[r.Next(4)]; Console.Write(c); | |
return !(s += c).EndsWith("おちんぽ"); }) ? | |
"{0}{0}イけませんでした……" : | |
"{0}{0}おぉぉお゙お゙~っ!!イグゥウ!!イッグゥウウ!!{0}{0}{1}回目で果てました…" | |
,Environment.NewLine, i); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment