結果

問題 No.163 cAPSlOCK
ユーザー chike_pluschike_plus
提出日時 2019-03-19 13:41:19
言語 F#
(F# 4.0)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 6,890 ms
コンパイル使用メモリ 186,160 KB
実行使用メモリ 33,440 KB
最終ジャッジ日時 2024-09-13 19:58:20
合計ジャッジ時間 15,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
33,048 KB
testcase_01 AC 316 ms
33,056 KB
testcase_02 AC 314 ms
32,764 KB
testcase_03 AC 315 ms
32,764 KB
testcase_04 AC 315 ms
32,920 KB
testcase_05 AC 316 ms
33,432 KB
testcase_06 AC 318 ms
33,176 KB
testcase_07 AC 317 ms
32,756 KB
testcase_08 AC 316 ms
33,148 KB
testcase_09 AC 317 ms
32,512 KB
testcase_10 AC 314 ms
33,052 KB
testcase_11 AC 315 ms
33,404 KB
testcase_12 AC 316 ms
33,432 KB
testcase_13 AC 316 ms
33,436 KB
testcase_14 AC 317 ms
32,652 KB
testcase_15 AC 314 ms
32,688 KB
testcase_16 AC 316 ms
33,292 KB
testcase_17 AC 316 ms
32,768 KB
testcase_18 AC 316 ms
33,440 KB
testcase_19 AC 317 ms
32,412 KB
testcase_20 AC 317 ms
32,632 KB
testcase_21 AC 314 ms
32,512 KB
testcase_22 AC 317 ms
33,228 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (240 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let ``No.163 cAPSlOCK``() =
  
  stdin.ReadLine()
  |> Seq.iter (fun c -> 
    match System.Char.IsUpper c with
    | false -> c |> System.Char.ToUpper |> stdout.Write 
    | true  -> c |> System.Char.ToLower |> stdout.Write 
    )
  stdout.WriteLine ""

``No.163 cAPSlOCK``()
0