結果

問題 No.412 花火大会
ユーザー sekiya9311sekiya9311
提出日時 2016-10-28 09:04:48
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,340 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 106,104 KB
実行使用メモリ 24,804 KB
最終ジャッジ日時 2023-08-15 20:30:13
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
20,848 KB
testcase_01 AC 58 ms
20,836 KB
testcase_02 AC 58 ms
20,780 KB
testcase_03 AC 58 ms
22,800 KB
testcase_04 AC 58 ms
20,824 KB
testcase_05 AC 58 ms
20,900 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 58 ms
20,748 KB
testcase_09 AC 58 ms
20,864 KB
testcase_10 AC 59 ms
20,748 KB
testcase_11 AC 58 ms
20,968 KB
testcase_12 AC 58 ms
20,848 KB
testcase_13 AC 58 ms
20,880 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 58 ms
20,948 KB
testcase_21 AC 58 ms
20,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;

class Template
{
	static Scanner sc;
	public static void Main(string[] args)
	{
		sc = new Scanner();
		var vec = sc.nextLongArray();
		long N = sc.nextLong();
		var E = sc.nextLongArray();
		long[,] dp = new long[N + 1, 4];
		dp[0, 0] = 1;
		for (int i = 0; i < N; i++)
		{
			int cnt = 0;
			for (int j = 0; j < 3; j++)
			{
				if (vec[j] <= E[i]) cnt++;
			}
			dp[i + 1, 0] = dp[i, 0] * 2;
			for (int j = 1; j < 4; j++)
			{
				if (cnt != 0) dp[i + 1, j] = dp[i, j] + dp[i, j - 1];
				else dp[i + 1, j] = dp[i, j];
			}
		}
		Console.WriteLine(dp[N, 3]);
	}
}

public class Scanner
{
	public Scanner() { }
	public string next()
	{
		return Console.ReadLine();
	}
	public int nextInt()
	{
		return int.Parse(next());
	}
	public double nextDouble()
	{
		return double.Parse(next());
	}
	public long nextLong()
	{
		return long.Parse(next());
	}
	public string[] nextArray()
	{
		return next().Split(' ');
	}
	public int[] nextIntArray()
	{
		return Array.ConvertAll(nextArray(), e => int.Parse(e));
	}
	public long[] nextLongArray()
	{
		return Array.ConvertAll(nextArray(), e => long.Parse(e));
	}
	public double[] nextDoubleArray()
	{
		return Array.ConvertAll(nextArray(), e => double.Parse(e));
	}
}
0