結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー regeregeregerege
提出日時 2017-04-18 21:19:26
言語 F#
(F# 4.0)
結果
AC  
実行時間 87 ms / 1,000 ms
コード長 111 bytes
コンパイル時間 5,910 ms
コンパイル使用メモリ 154,716 KB
実行使用メモリ 24,904 KB
最終ジャッジ日時 2023-08-11 16:32:28
合計ジャッジ時間 9,264 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
22,812 KB
testcase_01 AC 82 ms
22,748 KB
testcase_02 AC 82 ms
22,956 KB
testcase_03 AC 82 ms
24,900 KB
testcase_04 AC 82 ms
24,888 KB
testcase_05 AC 82 ms
24,792 KB
testcase_06 AC 82 ms
24,884 KB
testcase_07 AC 83 ms
22,836 KB
testcase_08 AC 82 ms
22,840 KB
testcase_09 AC 82 ms
22,768 KB
testcase_10 AC 83 ms
22,788 KB
testcase_11 AC 82 ms
22,768 KB
testcase_12 AC 81 ms
22,824 KB
testcase_13 AC 83 ms
22,960 KB
testcase_14 AC 83 ms
24,812 KB
testcase_15 AC 83 ms
22,804 KB
testcase_16 AC 81 ms
22,860 KB
testcase_17 AC 87 ms
22,924 KB
testcase_18 AC 83 ms
22,956 KB
testcase_19 AC 82 ms
22,816 KB
testcase_20 AC 84 ms
22,864 KB
testcase_21 AC 83 ms
24,896 KB
testcase_22 AC 82 ms
24,904 KB
testcase_23 AC 82 ms
22,976 KB
testcase_24 AC 82 ms
20,652 KB
testcase_25 AC 83 ms
24,736 KB
testcase_26 AC 82 ms
24,904 KB
testcase_27 AC 84 ms
22,780 KB
testcase_28 AC 82 ms
24,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let s = stdin.ReadLine() + stdin.ReadLine()
s.Split('x') |> Array.map (Seq.length) |> Array.max
|> printfn "%d"
0