結果

問題 No.908 うしたぷにきあくん文字列
ユーザー yosuteconyosutecon
提出日時 2019-11-10 09:24:27
言語 Julia
(1.10.2)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 238,840 KB
最終ジャッジ日時 2024-10-01 17:25:28
合計ジャッジ時間 6,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
238,008 KB
testcase_01 AC 257 ms
238,840 KB
testcase_02 AC 260 ms
238,140 KB
testcase_03 AC 260 ms
238,780 KB
testcase_04 AC 255 ms
238,392 KB
testcase_05 AC 264 ms
238,264 KB
testcase_06 AC 259 ms
238,016 KB
testcase_07 AC 261 ms
238,584 KB
testcase_08 AC 258 ms
238,780 KB
testcase_09 AC 261 ms
238,016 KB
testcase_10 AC 262 ms
238,076 KB
testcase_11 AC 260 ms
238,524 KB
testcase_12 AC 259 ms
238,140 KB
testcase_13 AC 261 ms
238,528 KB
testcase_14 AC 260 ms
238,140 KB
testcase_15 AC 262 ms
238,268 KB
testcase_16 AC 263 ms
238,016 KB
testcase_17 AC 261 ms
238,268 KB
testcase_18 AC 259 ms
238,140 KB
testcase_19 AC 264 ms
238,144 KB
権限があれば一括ダウンロードができます

ソースコード

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 i%2==1&&(Int(s[i])<97||Int(s[i])>122)
            f = 1
        end
        if i%2==0&&s[i]!=' '
            f = 1
        end
    end
    println(f==0 ? "Yes" : "No")
end
main()
0