CJam, 1051 827 643 569 545 407 327 279 235 233 229
''"','#'C'J'a'm',' qYew::-Yf#:+e#'''''''''"
f{-ci'(*''2*\}'^,40>"*/:N"-"][ZZ[\^__`bcdgimpstsz{}~~~"
โปรแกรมด้านบนสร้างซอร์สโค้ดจริงซึ่งมีความยาว 1,179,112 ไบต์
การทดสอบ
การใช้ล่าม Javaซอร์สโค้ดสามารถสร้างและทดสอบดังนี้:
$ alias cjam='java -jar cjam-0.6.5.jar'
$ cjam gen.cjam > diff.cjam
$ cksum diff.cjam
896860245 1179112 diff.cjam
$ cjam diff.cjam < diff.cjam
#CJam, 229
รุ่นอื่น
ด้วยค่าใช้จ่าย 36 คะแนน - สำหรับคะแนนสุดท้าย265 - เราสามารถทำให้ซอร์สโค้ดสั้นลง 99.92%:
'''()))))(''''(((('''())))))))))))))))))))))))))))('''()))))))))))))))))))))))))))))))))))('''())))))))))))))))))))))))))))))))))))))))))))))))))))))))))('''())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))('''()))))(''''((((((('())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))('())))))))))))))))))))))))))))))))))))))))))))))))))('())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))('())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))('()))))))))))))))))))('()))))))))))))))))))('())))))('())))))))))))))))))))))))))))))))))))))))))))))))))('()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(''(((('()))))))))))))))))))('())))('())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(''((((''''''''''''''''''()+,-.0123456789;<=>?@ABCDEFGHIJKLMOPQRSTUVWXYZ[\]][ZZ[\^__`bcdgimpstsz{}~~~
คุณสามารถลองรุ่นนี้ออนไลน์ในล่าม CJam
ความคิด
เราต้องการรันโค้ด
'#'C'J'a'm',' qYew::-Yf#:+
ทำให้คะแนนต่ำที่สุด เพื่อให้บรรลุสิ่งนี้เราจะสร้างตัวอักษรสตริงโดยตัวละคร (ไม่กี่ตัวเลือกก่อนและหลัง) และประเมินผล
โชคดีที่'
(ตัวอักษรผลักดันตัวอักษร), (
(ลดลง) และ)
(เพิ่มขึ้น) เป็นตัวอักษร ASCII ติดต่อกันดังนั้นการผลักดันตัวอักษรโดยพลการค่อนข้างมีราคาไม่แพง
อักขระ ASCII หลังจาก'
สามารถถูกพุชเป็น'()…)(
โดยที่จำนวน)
ขึ้นอยู่กับจุดโค้ด
ยกตัวอย่างเช่นสามารถผลักดันเป็น+
'())))(
ระยะห่างระหว่าง'
และ(
และ(
และ)
คือ 1 การลากต่อท้าย)(
จะยกเลิกกันและกัน ฟังก์ชั่นเดียวของพวกเขาคือการปูทางสำหรับการดังต่อไปนี้'
(ตรงกับตัวอักษรถัดไป) ที่มีตัวอักษรต่อเนื่อง
ตัวละครที่ถูกผลักในแบบนี้จะเพิ่มคะแนน 4 คะแนน
อักขระ ASCII ก่อน'
สามารถถูกพุชเป็น''(…(
โดยที่จำนวน(
ขึ้นอยู่กับจุดโค้ด
ยกตัวอย่างเช่นสามารถผลักดันเป็น#
''((((
ระยะห่างระหว่าง'
และ(
คือ 1
ตัวละครที่ถูกผลักในแบบนี้จะเพิ่มคะแนน 2 คะแนน
''(…(
ใช้งานได้จริงสำหรับอักขระ ASCII ทั้งหมดเนื่องจากตัวละครกว้าง 16 บิตและล้อมรอบ ตัวอย่างเช่น+
สามารถผลักดันเป็น''
แล้วตามด้วย 65,532 (
s
เทคนิคนี้ใช้ในรหัสเวอร์ชัน 1.2 เมกะไบต์
ตัวละคร'
สามารถผลักเป็น''
ปล่อยให้คะแนนไม่สะทกสะท้าน
รหัส
e# Push these characters on the stack: ','#'C'J'a'm',' qYew::-Yf#:+e#'''''''''
''
'()))))(
''
''((((
''
'())))))))))))))))))))))))))))(
''
'()))))))))))))))))))))))))))))))))))(
''
'())))))))))))))))))))))))))))))))))))))))))))))))))))))))))(
''
'())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(
''
'()))))(
''
''(((((((
'())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(
'())))))))))))))))))))))))))))))))))))))))))))))))))(
'())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(
'())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(
'()))))))))))))))))))(
'()))))))))))))))))))(
'())))))(
'())))))))))))))))))))))))))))))))))))))))))))))))))(
'()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(
''((((
'()))))))))))))))))))(
'())))(
'())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(
''((((
''
''
''
''
''
''
''
''
''()
+ e# Concatenate the two topmost single quotes.
, e# Push the length of the resulting string (2).
-.0123456789 e# Push that number.
; e# Discard it from the stack.
< e# Compare a single quote with 2. Pushes 0.
= e# Compare a single quote with 0. Pushes 0.
> e# Compare a single quote with 0. Pushes 1.
? e# Ternary if. Discards a single quote and 1.
@ e# Rotate the remaining three single quotes.
ABCDEFGHIJKLMOPQRSTUVWXYZ e# Push 25 items on the stack.
[\] e# Swap the last two and wrap them in an array.
e# So far, we've pushed the elements of "','#'C'J'a'm',' qYew::-Yf#:+e#'''"
e# followed by the elements of [10 11 12 13 14 15 16 17 18 19 20]
e# and ["" "" "" 3.141592653589793 "" "" " " 0 0 0 -1 1 [3 2]].
] e# Wrap the entire stack in an array.
[ e# Begin an array. Does nothing.
ZZ e# Push 3 twice.
[ e# Begin an array. Does nothing.
\^ e# Swap both 3s and push the bitwise XOR. Pushes 0.
__ e# Push two copies.
` e# Inspect the last copy. Pushes the string "0".
b e# Convert "0" from base 0 to integer. Pushes 48.
cd e# Cast 48 to Character, then Double. Pushes 48.0.
gi e# Apply the sign function, then cast to integer. Pushes 1.
mp e# Check 1 for primality. Pushes 0.
s e# Cast the result to string. Pushes the string "0".
e# We now have three elements on the stack: an array, 0, and "0"
t e# Set the element at index 0 of the array to the string "0".
s e# Cast the array to string.
e# This pushes the string consisting of the characters
e# 0,'#'C'J'a'm',' qYew::-Yf#:+
e# and
e# e#'''10111213141516171819203.141592653589793 000-1132
e#
e# When evaluated this does the following:
e# 0, Push an empty array. Does not affect output.
e# '#'C'J'a'm',' Push the characters of "#CJam, ".
e# q Read all input from STDIN.
e# Yew Push the overlapping slices of length 2.
e# ::- Reduce each pair of characters to their difference.
e# Yf# Square each difference.
e# :+ Add the results.
e# e#… Comment. Does nothing.
z e# Zip. This wraps the string on the stack in an array.
{}~ e# Execute an empty block.
~ e# Unwrap the array.
~ e# Evaluate the string.