結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー regeregeregerege
提出日時 2017-04-18 21:23:20
言語 F#
(F# 4.0)
結果
AC  
実行時間 85 ms / 1,000 ms
コード長 118 bytes
コンパイル時間 4,805 ms
コンパイル使用メモリ 155,416 KB
実行使用メモリ 24,896 KB
最終ジャッジ日時 2023-08-11 16:31:26
合計ジャッジ時間 8,727 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
22,720 KB
testcase_01 AC 82 ms
24,744 KB
testcase_02 AC 81 ms
24,824 KB
testcase_03 AC 82 ms
22,952 KB
testcase_04 AC 81 ms
22,776 KB
testcase_05 AC 81 ms
22,720 KB
testcase_06 AC 82 ms
24,804 KB
testcase_07 AC 82 ms
24,804 KB
testcase_08 AC 83 ms
22,972 KB
testcase_09 AC 81 ms
22,752 KB
testcase_10 AC 83 ms
24,692 KB
testcase_11 AC 82 ms
24,748 KB
testcase_12 AC 83 ms
24,752 KB
testcase_13 AC 82 ms
22,820 KB
testcase_14 AC 82 ms
20,844 KB
testcase_15 AC 82 ms
22,752 KB
testcase_16 AC 83 ms
24,896 KB
testcase_17 AC 82 ms
22,864 KB
testcase_18 AC 84 ms
20,764 KB
testcase_19 AC 85 ms
22,860 KB
testcase_20 AC 82 ms
24,752 KB
testcase_21 AC 81 ms
22,712 KB
testcase_22 AC 82 ms
24,780 KB
testcase_23 AC 81 ms
22,848 KB
testcase_24 AC 83 ms
24,764 KB
testcase_25 AC 84 ms
22,696 KB
testcase_26 AC 84 ms
24,880 KB
testcase_27 AC 82 ms
22,720 KB
testcase_28 AC 81 ms
22,752 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 (fun s -> s.Length) |> Array.max
|> printfn "%d"
0