結果

問題 No.163 cAPSlOCK
ユーザー regeregeregerege
提出日時 2015-09-06 08:38:04
言語 F#
(F# 4.0)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 196 bytes
コンパイル時間 6,515 ms
コンパイル使用メモリ 156,360 KB
実行使用メモリ 24,876 KB
最終ジャッジ日時 2023-09-26 09:19:59
合計ジャッジ時間 7,696 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
22,968 KB
testcase_01 AC 79 ms
22,760 KB
testcase_02 AC 80 ms
20,672 KB
testcase_03 AC 78 ms
22,872 KB
testcase_04 AC 78 ms
22,732 KB
testcase_05 AC 78 ms
22,680 KB
testcase_06 AC 80 ms
22,760 KB
testcase_07 AC 81 ms
24,812 KB
testcase_08 AC 82 ms
22,772 KB
testcase_09 AC 79 ms
22,756 KB
testcase_10 AC 79 ms
22,892 KB
testcase_11 AC 80 ms
24,776 KB
testcase_12 AC 81 ms
22,744 KB
testcase_13 AC 79 ms
22,664 KB
testcase_14 AC 80 ms
22,728 KB
testcase_15 AC 78 ms
22,760 KB
testcase_16 AC 79 ms
22,740 KB
testcase_17 AC 80 ms
24,780 KB
testcase_18 AC 78 ms
22,768 KB
testcase_19 AC 82 ms
24,836 KB
testcase_20 AC 77 ms
22,748 KB
testcase_21 AC 83 ms
22,844 KB
testcase_22 AC 80 ms
24,876 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

        Seq.unfold (function
            | 0 | 0xD | 0xA -> None
            | i -> Some(i,stdin.Read())) <| stdin.Read()
        |> Seq.map (((^^^)0x20) >> char)
        |> Seq.iter (printf "%c")
0