結果
問題 | No.8061 uxs hxixtya pyuyn ixc hyixa kxuyn |
ユーザー | kakel-san |
提出日時 | 2024-02-19 18:38:18 |
言語 | Ruby (3.4.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 640 bytes |
コンパイル時間 | 36 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-09-29 01:10:37 |
合計ジャッジ時間 | 4,583 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 WA * 2 |
other | AC * 9 RE * 2 WA * 8 |
コンパイルメッセージ
Syntax OK
ソースコード
s = readline().chomp for i in 0..(s.length-1) do for j in (i+2)..(s.length) do inlist = Array.new(26, 0) outlist = Array.new(26, 0) flg = true for k in 0..(s.length-1) do c = s[k].codepoints[0] - 97 if k < i || k >= j || (k - i) % 2 == 1 if s[k] != ' ' outlist[c] = outlist[c] + 1 end else if s[k] == ' ' flg = false else inlist[c] = inlist[c] + 1 end end end for k in 0..25 do if inlist[k] > 0 && outlist[k] > 0 flg = false end end if flg puts 'Yes' exit() end end end puts 'No'