結果

問題 No.169 何分かかるの!?
ユーザー regeregeregerege
提出日時 2016-08-14 19:56:32
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 93 bytes
コンパイル時間 6,832 ms
コンパイル使用メモリ 186,112 KB
実行使用メモリ 34,748 KB
最終ジャッジ日時 2024-04-25 06:40:36
合計ジャッジ時間 16,370 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
34,740 KB
testcase_01 AC 338 ms
34,740 KB
testcase_02 AC 340 ms
34,592 KB
testcase_03 AC 339 ms
34,616 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 338 ms
34,484 KB
testcase_07 WA -
testcase_08 AC 343 ms
34,484 KB
testcase_09 AC 342 ms
34,740 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 340 ms
34,740 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 339 ms
34,748 KB
testcase_18 AC 340 ms
34,604 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 338 ms
34,612 KB
testcase_22 AC 337 ms
34,476 KB
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (249 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/

ソースコード

diff #

let r() = int(stdin.ReadLine())
let K,S = r(),r()*60
let s = S/(100-K)*100/60
printfn "%d" s
0