結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー 👑 obakyanobakyan
提出日時 2019-03-29 21:55:21
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 01:25:58
合計ジャッジ時間 1,009 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = io.read()
y, m, d = string.match(s, "(%d+)/(%d+)/(%d+)")
y, m, d = tonumber(y), tonumber(m), tonumber(d)
mod = 31
if(m == 4 or m == 6 or m == 9 or m == 11) then
    mod = 30
elseif(m == 2) then
    if(y % 400 == 0) then mod = 29
    elseif(y % 100 == 0) then mod = 28
    elseif(y % 4 == 0) then mod = 29
    else mod = 28 end
end
d = d + 2
if(mod < d) then
    d = d - mod
    m = m + 1
    if(m == 13) then
        m, y = 1, y + 1
    end
end
io.write(string.format("%d/%02d/%02d\n", y, m, d))
0