結果
問題 | No.607 開通777年記念 |
ユーザー | nobigomu |
提出日時 | 2018-04-24 18:18:12 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
WA
|
実行時間 | - |
コード長 | 590 bytes |
コンパイル時間 | 55 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 16:02:11 |
合計ジャッジ時間 | 1,533 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 11 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 136 ms
5,376 KB |
testcase_12 | AC | 147 ms
5,376 KB |
ソースコード
print((function (f, g, m) local a = f() for _=2,m do if g(a) then return "YES" end end return "NO" end)(function () local a = {0} for e in io.stdin:read("*l"):gmatch("%d+") do e=tonumber(e) table.insert(a,e) a[1]=a[1]+e end return a end, function (a) local i = 2 for e in io.stdin:read("*l"):gmatch("%-?%d+") do e=tonumber(e) a[1],a[i],i=a[1]+e,a[i]+e,i+1 end if a[1]<777 then return false end for i=2,#a do local t=0 for j=i,#a do t=t+a[j] if t==777 then return true end if t>777 then break end end end return false end, tonumber(io.stdin:read("*l"):match("%d+%s(%d+)"))))