結果
| 問題 |
No.69 文字を自由に並び替え
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-26 20:46:29 |
| 言語 | F# (F# 4.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 164 bytes |
| コンパイル時間 | 10,802 ms |
| コンパイル使用メモリ | 186,500 KB |
| 実行使用メモリ | 30,592 KB |
| 最終ジャッジ日時 | 2024-06-27 13:28:19 |
| 合計ジャッジ時間 | 12,622 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 WA * 2 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (280 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/
ソースコード
let f (a:string) (b:string) =
let f2 = Seq.map int >> Seq.sum
if f2 a = f2 b then "YES" else "NO"
f <| stdin.ReadLine() <| stdin.ReadLine() |> printfn "%s"