結果

問題 No.296 n度寝
ユーザー kuuso1kuuso1
提出日時 2016-08-17 22:55:34
言語 F#
(F# 4.0)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 415 bytes
コンパイル時間 15,015 ms
コンパイル使用メモリ 208,308 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-07-07 02:49:48
合計ジャッジ時間 17,151 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
28,928 KB
testcase_01 AC 57 ms
28,800 KB
testcase_02 AC 58 ms
28,928 KB
testcase_03 AC 57 ms
29,056 KB
testcase_04 AC 58 ms
28,800 KB
testcase_05 AC 57 ms
28,928 KB
testcase_06 AC 58 ms
28,800 KB
testcase_07 AC 58 ms
29,056 KB
testcase_08 AC 57 ms
28,800 KB
testcase_09 AC 58 ms
29,056 KB
testcase_10 AC 57 ms
29,180 KB
testcase_11 AC 58 ms
28,800 KB
testcase_12 AC 58 ms
29,056 KB
testcase_13 AC 60 ms
29,184 KB
testcase_14 AC 58 ms
28,928 KB
testcase_15 AC 57 ms
28,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (446 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(4,13): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
type Sol() =
    member this.Solve() = 
        let [| N; H; M; T |] = stdin.ReadLine().Split() |> Array.map int
        let elapsedMinute = (N-1) * T
        let now = H*60 + M
        let hour = (now + elapsedMinute) % 1440 / 60
        let minute = (now + elapsedMinute) % 60
        stdout.WriteLine("{0}",hour);
        stdout.WriteLine("{0}",minute);
        

let mySol = new Sol()
mySol.Solve()
0