それは皆クリスマスです、そしてここに祝うべきコードゴルフの挑戦があります。プレゼントを印刷するプログラムを作成する必要があります。具体的には、「メリークリスマス」という言葉。ただし、キャッチがあります。このプログラムは、12月25日の場合にのみ機能する必要があります。コードが他の日に実行された場合、プログラムはクラッシュするはずです。
これはCode-Golfなので、バイト数が最小の答えが勝ちです。
メリークリスマス!
それは皆クリスマスです、そしてここに祝うべきコードゴルフの挑戦があります。プレゼントを印刷するプログラムを作成する必要があります。具体的には、「メリークリスマス」という言葉。ただし、キャッチがあります。このプログラムは、12月25日の場合にのみ機能する必要があります。コードが他の日に実行された場合、プログラムはクラッシュするはずです。
これはCode-Golfなので、バイト数が最小の答えが勝ちです。
メリークリスマス!
回答:
.dↄґ6C65h*325q/Al
C65h* - multiply the day by the (current month + 1)
325q - ^ == 325
6 / - 6 / ^
.dↄґ - load "merry christmas"
Al - ^.capwords()
または18バイトの非競合。
.dↄґ6Cs6Y1q/Al
このセクション以外はまったく同じです:
Cs6Y1q
C - get_time()
s6 - add 1 week
Y - get day of the year
1q - ^ == 1
30 * (10+1)
= 330ない325
注:これはGoogle Chromeでのみテストされており、プログラムはブラウザごとに(またはデバイスごとに)動作が異なる場合があります
@ ConorO'Brienのおかげで2バイト節約
@ETHProductionsのおかげで7バイト節約
alert(/c 25/.test(Date())?"Merry Christmas":a)
Uncaught ReferenceError: a is not defined
日付がでなければ終了しますDec 25
。これがクラッシュとしてカウントされるかどうかは本当にわかりません
alert(/c 25/.test(Date())?"Merry Christmas":a)
.slice(6,10)=="c 25"
?
c
(Oct
近づいていますが、まだ正規表現を満たしていません)。ヒントをありがとう!
Date()
は実装に完全に依存します。たとえば、マシンの言語と場所によって異なることが予想されます。
ここでのJavaScript / ESの回答のアイデアのおかげで、なんとかバイトを圧縮できました。辞書に索引を付けます-存在しないキーはを発生させますKeyError
。次のコードはローカルタイムゾーンで動作します
import time;print({1:'Merry Christmas'}['c 25'in time.ctime()])
の出力形式ctime
はロケールに依存しません-形式は常に〜'Sun Dec 25 19:23:05 2016'
です。3文字の略語は12月にのみ終わるc
ため、使用しても安全です。'c 25'in time.ctime()
ここでです。
前のバージョン:
これはUTCタイムゾーンで機能します。ローカルタイムゾーンでは、s/gm/local
さらに3バイト必要です。Python 2の場合、print
65バイトの括弧を削除できます。
import time;print({(12,25):'Merry Christmas'}[time.gmtime()[1:3]])
コンストラクトはKeyError
他の日付にスローされます:
>>> import time;print({(1,1):'Happy New Year'}[time.gmtime()[1:3]])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
KeyError: (12, 25)
import time;print{'2512':'Merry Christmas'}[time.strftime("%d%m")]
はPython 2とラベルを付け、それはまだ66のバイトだと12月25日以外の日にKeyError例外でクラッシュ
1:3
、偶然にテストコードをコピーしました
gmtime()
私が答えにあなたのアイデアを借りたとき、それを取り上げました。気にしないでください:-)
<?=date(md)-1225?"":"Merry Christmas";
または
<?date(md)-1225?die:0?>Merry Christmas
または
<?=["Merry Christmas"][date(md)-1225];
date(Lz)%1001-358
か?:D
""
、あなたに2バイトを節約する最初のコードで。うるう年でない場合は、12月25日の日付で置き換えることmd
によりz
、さらに2バイト節約できます1225
。
eval((date(md)^TQZZ).'"Merry Christmas";');
(43バイト)
1
。これにより、計算の結果が出力されます。そして0104-1225
1121です
-1 @muddyfishのおかげで
@AnttiHaapalaに別のカップルを救ったアイデアをありがとう。
import time;print['Merry Christmas'][(12,25)!=time.gmtime()[1:3]]
12月25日でない場合、IndexErrorをスローします。
うるう年以外でのみ機能するため、59バイトの非競合バージョン(今年は360で、うるう年は361を使用)
import time;print['Merry Christmas'][360!=time.gmtime()[7]]
gmtime()
カップルを削除することを考えたまで、これは私の67バイトバージョンでもありました。私は認めなければなりません、しかし、私はその日のアイデアでもっとできることがあればいいのにと思います。
この辺りで初めて...この仕事で最高の言語で始めました:
import java.util.*;public class a{public static void main(String[]r){Calendar c=Calendar.getInstance();if(!(c.get(2)==11&&c.get(5)==25)){int i=1/0;}System.out.print("Merry Christmas");}}
Calendar
for *
を変更して、数バイトを保存できます。あなたはまたの名前を短くする可能性がargs
...私が思うに、mainメソッドのパラメータを
'Merry Christmas'IHh&Z'5U12h=?}Yl
This works in current version (19.7.0) of the language. To cause the error, the following code exploits the fact that the logarithm of a string gives an error (this may change in future versions).
'Merry Christmas' % Push this string
IHh % Push 3, then 2, concatenate: gives array [3 2]
&Z' % Get 3rd and 2nd outputs of clock vector: current day and month
5U12h % Push 5, square, push 12, concatenate: gives [25 12]
= % Compare if corresponding entries are equal in the two arrays
? % If all entries are equal: do nothing
} % Else
Yl % Logarithm. Gives an error when applied on a string
% End (implicit). Display (implicit)
~left$$|(_D,5)=@12-25||?@Merry Christmas|\?a(12)
Explanation:
~ IF
left$$|(_D,5) the date string starts with
=@12-25| the string "12-25"
| THEN
?@Me..as| PRINT "Merry Christmas"
\ ELSE
?a(12) Print the twelfth index of an undefined array.
Since there are only 11 elements in undefined arrays, this
results in an index-out-of-bounds error.
The the IF statement is auto-closed by QBIC.
This assumes American MM-DD
date notation. This would be shorter if I'd finally make a Substring function in QBIC.
Saved 11 bytes thanks to Adnan's string compression :) .
1žfže‚12D·>‚Q÷”ÞٌΔ×
žfže‚ Push [current month, current day]
12D·>‚ Push [12, 25]
Q Push tmp = 1 if the two arrays are equal, tmp = 0 otherwise
1 ÷ Evaluate x = 1/tmp. If tmp = 0 a division by 0 exception is thrown
”ÞÙŒÎ”× Implicitly display "Merry Christmas" x times
I did what came to mind first, so there may be better approaches for this one. But PPCG deserves a Merry Christmas in 05AB1E as well ;) .
x
is short for duplicate and double :).
99 byte solution
using System;int i;Console.WriteLine(DateTime.Now.ToString("dM")=="2512"?"Merry Christmas":i/0+"");
100 byte solution (prefer this one... a bit different)
using System;int i;Console.WriteLine(DateTime.Now.AddDays(7).DayOfYear==1?"Merry Christmas":i/0+"");
Explained:
using System;
int i;
// if today plus 7 days is the first day of the year, then it's xmas!
Console.WriteLine(DateTime.Now.AddDays(7).DayOfYear==1
? "Merry Christmas"
// otherwise divide i by 0
: i/0+"");
DateTime.Now.AddDays(7).DayOfYear==1
is one byte shorter than DateTime.Now.ToString("ddMM")=="2512"
but 1 byte longer than DateTime.Now.ToString("dM")=="2512"
$"{DateTime.Now:dM}"=="2512"
. dM
is ambiguous, but not for "2512".
$"{DateTime.Now:dM}"=="2512"?"Merry Christmas":1/1-1+""
55 bytes) =)
int i
and notjust 1/0
?
$"{DateTime.Now:dM}"=="2512"?"Merry Christmas":"".Remove(1)
(59 bytes)
using System;Console.WriteLine(DateTime.Now.AddDays(7).DayOfYear==1?"Merry Christmas":1/0+"");
Deletes the int i
declaration in favor of hard coding the division. I would leave this as a comment but don't have the reputation.
((`date +%m%d`-1225))&&${};echo Merry Christmas
*Thanks to @KenY-N for pointing out that the quotes in the echo can be removed, and to @IporSircer for reducing the condition size by 2 bytes.
bash: ${}: bad substitution
error. Also you can drop the quotes from Merry Christmas to save two bytes. Furthermore, [ `date +%m%d` = 1225 ]&&echo Merry Christmas
works for me, equalling my 45 bytes.
${}
with !-
to beat me by one byte. I'll upvote you as you win.
('Merry Christmas')'MMDD'date'1225'=¬#out
This creates a single-element array containing namely 'Merry Christmas!'
. After, it puts the date into a string with the month followed by the day. It checks for equality with '1225'
(Christmas), inverts it with ¬
, then gets that member from the preceding array. If it isn't Christmas, this will error with an index error. Otherwise, it prints Merry Christmas
. (Change the date in the string to see how it works on other days.)
import time
if time.strftime("%d%m")=="2512":print"Merry Christmas"
else:1/0
If it doesn't matter if it exits with an error when it is Christmas, then:
import time
if time.strftime("%d%m")=="2512":print"Merry Christmas"
1/0
EDIT:
Thanks @Flp.Tkc for pointing out that I needed to raise an error
-2 Bytes from @Max for pointing out about removing colons from the strftime function
et[C25]#1="Merry Christmas"/
Explanation:
et push an array of current [year month day hour ...]
[C25] push the array [12 25] (C=12)
# find the position of the 2nd array within the first one
1= compare it with 1, resulting in 1 for 1 and 0 otherwise
"Merry Christmas"/ split "Merry Christmas" into pieces of that length
(it crashes if the length is 0)
at the end, all the pieces are concatenated
and printed automatically
Saved 8 bytes thanks to Kritixi Lithos
Saved 1 byte thanks to Kritixi Lithos, again ;)
namespace System{class P{static void Main(string[] args){var d=DateTime.Today;if(d.Day==25)if(d.Month>11){Console.Write("Merry Christmas!");return;}throw new Exception();}}}
Alternative, ungolfed variant:
namespace System //In System, so we don't have to use system.
{
class Program
{
static void Main(string[] args) //Main function.
{
var d = DateTime.Today; //Get Today.
if (d.Day == 25) if (d.Month == 12) //Day has to be 25th, Month has to be 12nd.
{
Console.Write("Merry Christmas!"); return; //Prints.
}
throw new NotChristmasException(); //Errors/Crashes the program.
}
}
class NotChristmasException : Exception { } //Holiday exception, hooray!
}
NotChristmasException
is only in the ungolfed variant.
if(d.Day==25&&d.Month>11)Console.Write(...);else throw new Exception()
note combined if statements and removal of braces around the Console.Write
and replace return
with else
. Also change var d=DateTime.Now
you can get rid of exception throw with perhaps args[-1];
after renaming args to a
so a[-1];
(this so not identical to divide by zeros used elsewhere)
If[Today[[1,2;;]]=={12,25},"Merry Christmas!"]
Now
saves 2 Bytes over Today
Quit[]
or 1/0
should suffice.
v=1225==strftime("%m%d")||1/0
Running it:
$ echo Merry xmas | awk 'v=1225==strftime("%m%d")||1/0'
awk: cmd. line:1: (FILENAME=- FNR=1) fatal: division by zero attempted
Season greeting is piped to awk
. strftime
returns month+day (for example 1226
) and if it matches 1225
$0
record gets outputed. Result of comparison 1225==1226
is placed to v
var which is used to divide 1 if the date comparison fails.
Crashes with "Non-exhaustive patterns in function f" if it's not Christmas.
import Data.Time
f(_,12,25)="Merry Christmas"
main=getZonedTime>>=print.f.toGregorian.localDay.zonedTimeToLocalTime
Unfortunately, there's no function that allows you to just immediately get the time in a useful format, so most of this is converting the date formats.
18 bytes saved, thanks to @raznagul
using System;i=>{if(DateTime.Now.AddDays(7).DayOfYear==1)Console.Write("Merry Christmas");else{i/=0;};};
It adds 7 days to the current day, and checks if it is the first day of the year, if yes, it displays "Merry Christmas", otherwise it divides by zero.
return
is not necessary. Use i
instead of ()
.
if Time.now.strftime("%j")=="360";puts "Merry Christmas";else 0/0;end
Works in 2016. Doesn't differentiate between normal and leap years, may need to be adjusted for non-leap years.
set s datetime.toDateString datetime.now()
set t "Dec 25"
def c s.charAt i
def d t.charAt i
set i -1
label 1
set i 1+i
if i=6
io.write "Merry Christmas!"
exit()
if c=d
goto 1
z.z
(Remember that datetime.toDateString
is locale-dependent, so this may not work depending on your locale)
using System;Console.Write(new[]{"Merry Christmas"}[DateTime.Now.AddDays(7).DayOfYear-1]);
Throws IndexOutOfRangeException if it's not christmas.
date +%m%d|grep -q 1225&&echo Merry Christmas||!-
date +%m%d|grep -q 1225||!-;echo Merry Christmas
Similar to Mitchell Spector's, but use grep
in silent mode to check for a match, then &&
will ensure that it only prints on success, and the ||
causes it to look up history with !-
, which gives me this:
-bash: !-: event not found
And it stops execution as !- ; echo foo
demonstrates. The bash
documentation says that !-n
refers to the current command minus n
, so perhaps it is being interpreted as !-0
, which gives an identical (and non-localised) error message.
;
instead of ||
.