結果
問題 | No.842 初詣 |
ユーザー | keymoon |
提出日時 | 2020-02-05 15:47:22 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 1,737 bytes |
コンパイル時間 | 1,804 ms |
コンパイル使用メモリ | 114,016 KB |
実行使用メモリ | 25,708 KB |
最終ジャッジ日時 | 2024-09-22 14:29:10 |
合計ジャッジ時間 | 3,359 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
25,444 KB |
testcase_01 | AC | 23 ms
23,532 KB |
testcase_02 | AC | 22 ms
23,540 KB |
testcase_03 | AC | 23 ms
25,704 KB |
testcase_04 | AC | 23 ms
23,412 KB |
testcase_05 | AC | 23 ms
23,412 KB |
testcase_06 | AC | 23 ms
25,468 KB |
testcase_07 | AC | 23 ms
23,412 KB |
testcase_08 | AC | 22 ms
23,664 KB |
testcase_09 | AC | 22 ms
23,408 KB |
testcase_10 | AC | 23 ms
25,708 KB |
testcase_11 | AC | 22 ms
25,576 KB |
testcase_12 | AC | 23 ms
25,580 KB |
testcase_13 | AC | 22 ms
23,148 KB |
testcase_14 | AC | 22 ms
23,412 KB |
testcase_15 | AC | 23 ms
23,604 KB |
testcase_16 | AC | 22 ms
25,472 KB |
testcase_17 | AC | 23 ms
25,336 KB |
testcase_18 | AC | 22 ms
21,172 KB |
testcase_19 | AC | 23 ms
25,580 KB |
testcase_20 | AC | 23 ms
23,428 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() { var a = NextInt; var b = NextInt; var c = NextInt; var d = NextInt; var e = NextInt; var f = NextInt; var g = NextInt; for (int i1 = 0; i1 <= a; i1++) for (int i2 = 0; i2 <= b; i2++) for (int i3 = 0; i3 <= c; i3++) for (int i4 = 0; i4 <= d; i4++) for (int i5 = 0; i5 <= e; i5++) for (int i6 = 0; i6 <= f; i6++) if (500 * i1 + 100 * i2 + 50 * i3 + 10 * i4 + 5 * i5 + i6 == g) { Console.WriteLine("YES"); return; } Console.WriteLine("NO"); } } 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; } } }