結果
| 問題 |
No.337 P versus NP
|
| コンテスト | |
| ユーザー |
hum_op
|
| 提出日時 | 2016-02-12 21:15:28 |
| 言語 | F# (F# 4.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 250 bytes |
| コンパイル時間 | 16,136 ms |
| コンパイル使用メモリ | 185,372 KB |
| 実行使用メモリ | 30,464 KB |
| 最終ジャッジ日時 | 2024-09-22 04:14:55 |
| 合計ジャッジ時間 | 13,624 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 WA * 11 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (414 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/
ソースコード
open System
[<EntryPoint>]
let main args =
let s = Console.ReadLine();
let s = s.Split(' ');
let x:int = (int)s.[0];
let y:int = (int)s.[1];
if x = x * y then
printfn "="
else
printfn "!="
0
hum_op