結果

問題 No.908 うしたぷにきあくん文字列
ユーザー yosuteconyosutecon
提出日時 2019-11-10 09:18:41
言語 Julia
(1.10.2)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 475,096 KB
最終ジャッジ日時 2024-10-01 17:24:14
合計ジャッジ時間 6,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 268 ms
238,016 KB
testcase_02 AC 265 ms
238,140 KB
testcase_03 WA -
testcase_04 AC 263 ms
238,016 KB
testcase_05 AC 270 ms
238,052 KB
testcase_06 AC 265 ms
237,752 KB
testcase_07 AC 265 ms
237,884 KB
testcase_08 AC 264 ms
238,144 KB
testcase_09 AC 264 ms
237,884 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 265 ms
238,012 KB
testcase_13 WA -
testcase_14 AC 272 ms
237,884 KB
testcase_15 WA -
testcase_16 AC 267 ms
238,268 KB
testcase_17 WA -
testcase_18 AC 270 ms
238,016 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

parseInt(x) = parse(Int, x)
parseMap(x::Array{SubString{String},1}) = map(parseInt, x)

function main()
    s = readline() |> chomp
    l = length(s)
    f = 0
    for i in 1:l
        if l%2==1&&(Int(s[i])<97||Int(s[i])>122)
            f = 1
        end
        if l%2==0&&s[i]!=(" ")
            f = 1
        end
    end
    println(f==0 ? "Yes" : "No")
end
main()
0