結果
| 問題 | No.712 赤旗 |
| コンテスト | |
| ユーザー |
_Clay____
|
| 提出日時 | 2018-10-07 17:50:29 |
| 言語 | Lua (LuaJit 2.1.1787165859) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 377µs | |
| コード長 | 264 bytes |
| 記録 | |
| コンパイル時間 | 4 ms |
| コンパイル使用メモリ | 7,980 KB |
| 実行使用メモリ | 9,956 KB |
| 最終ジャッジ日時 | 2026-09-14 19:39:15 |
| 合計ジャッジ時間 | 1,176 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 |
ソースコード
scan = string.gmatch(io.read(),"%d+")
n = scan()
scan()
w = string.byte("W")
result = 0
for i = 1, n do
local s = io.read()
local t = {s:byte(1,s.len(s))}
for j , v in ipairs(t) do
if v == w then
result = result + 1
end
end
end
print(result)
_Clay____