結果
問題 | No.846 メダル |
ユーザー | keymoon |
提出日時 | 2020-02-05 16:03:53 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 1,725 bytes |
コンパイル時間 | 1,029 ms |
コンパイル使用メモリ | 116,600 KB |
実行使用メモリ | 25,836 KB |
最終ジャッジ日時 | 2024-09-22 14:49:18 |
合計ジャッジ時間 | 2,636 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
21,688 KB |
testcase_01 | AC | 23 ms
23,788 KB |
testcase_02 | AC | 23 ms
21,556 KB |
testcase_03 | AC | 23 ms
25,704 KB |
testcase_04 | AC | 23 ms
25,580 KB |
testcase_05 | AC | 23 ms
23,528 KB |
testcase_06 | AC | 23 ms
23,780 KB |
testcase_07 | AC | 23 ms
23,656 KB |
testcase_08 | AC | 23 ms
23,788 KB |
testcase_09 | AC | 23 ms
25,576 KB |
testcase_10 | AC | 23 ms
23,908 KB |
testcase_11 | AC | 23 ms
23,980 KB |
testcase_12 | AC | 23 ms
23,520 KB |
testcase_13 | AC | 24 ms
23,652 KB |
testcase_14 | AC | 23 ms
23,916 KB |
testcase_15 | AC | 23 ms
23,404 KB |
testcase_16 | AC | 23 ms
23,536 KB |
testcase_17 | AC | 23 ms
23,852 KB |
testcase_18 | AC | 23 ms
23,796 KB |
testcase_19 | AC | 23 ms
23,856 KB |
testcase_20 | AC | 23 ms
25,576 KB |
testcase_21 | AC | 23 ms
25,836 KB |
testcase_22 | AC | 23 ms
23,788 KB |
testcase_23 | AC | 23 ms
23,856 KB |
testcase_24 | AC | 23 ms
21,684 KB |
testcase_25 | AC | 23 ms
23,784 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.IO; using System.Linq; using System.Collections; using System.Collections.Generic; using System.Numerics; using System.Diagnostics; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using static System.Math; using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions; using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute; using static Reader; static class P { static void Main() { long p = NextInt; long q = NextInt; long r = NextInt; long a = NextInt; long b = NextInt; long c = NextInt; long min = long.MinValue; long max = long.MaxValue; min = Max(min, p * a - p + 1); max = Min(max, p * a); min = Max(min, q * (a + b) - q + 1); max = Min(max, q * (a + b)); min = Max(min, r * (a + b + c) - r + 1); max = Min(max, r * (a + b + c)); if (min > max) { Console.WriteLine(-1); return; } Console.WriteLine($"{min} {max}"); } } static class Reader { const int BUF_SIZE = 1 << 12; static Stream Stream = Console.OpenStandardInput(); static byte[] Buffer = new byte[BUF_SIZE]; static int ptr = BUF_SIZE - 1; static void Move() { if (++ptr >= Buffer.Length) { Stream.Read(Buffer, 0, BUF_SIZE); ptr = 0; } } public static int NextInt { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { int res = 0; while (Buffer[ptr] < 48) Move(); do { res = res * 10 + (int)(Buffer[ptr] ^ 48); Move(); } while (48 <= Buffer[ptr]); return res; } } }