結果

問題 No.932 解法破綻!高橋君
ユーザー 👑 obakyan
提出日時 2019-11-30 09:40:11
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-21 00:59:50
合計ジャッジ時間 807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

s = io.read()
f = true
for a in s:gmatch("%w+") do
  if a ~= "AC" then f = false break end
end
print(f and "Done!" or "Failed...")
0