結果

問題 No.993 青色
ユーザー ikdikd
提出日時 2020-05-02 00:21:41
言語 F#
(F# 4.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 4,458 ms
コンパイル使用メモリ 156,384 KB
実行使用メモリ 24,760 KB
最終ジャッジ日時 2023-08-26 17:48:16
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
22,640 KB
testcase_01 AC 77 ms
20,560 KB
testcase_02 AC 78 ms
22,768 KB
testcase_03 AC 78 ms
24,760 KB
testcase_04 AC 77 ms
24,556 KB
testcase_05 AC 77 ms
22,696 KB
testcase_06 AC 77 ms
20,640 KB
testcase_07 AC 77 ms
22,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main _ =
    let s = stdin.ReadLine().Replace("ao", "ki")
    printfn "%s" s
    0 // return an integer exit code
0