結果

問題 No.3081 HQ9+
ユーザー さかぽんさかぽん
提出日時 2021-04-02 11:22:22
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 2,322 ms
コンパイル使用メモリ 105,600 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-06-02 08:57:26
合計ジャッジ時間 3,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,304 KB
testcase_01 AC 22 ms
18,048 KB
testcase_02 AC 21 ms
18,304 KB
testcase_03 AC 20 ms
18,176 KB
testcase_04 AC 20 ms
18,560 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 22 ms
18,048 KB
testcase_14 AC 21 ms
18,176 KB
testcase_15 AC 21 ms
18,304 KB
testcase_16 AC 21 ms
18,176 KB
testcase_17 AC 22 ms
18,432 KB
testcase_18 AC 24 ms
18,360 KB
testcase_19 AC 23 ms
18,432 KB
testcase_20 AC 24 ms
18,352 KB
testcase_21 AC 23 ms
18,348 KB
testcase_22 AC 24 ms
18,484 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.Linq;

class I
{
	static void Main() => Console.WriteLine(Solve());
	static object Solve()
	{
		var n = int.Parse(Console.ReadLine());
		var s = Console.ReadLine();

		if (s.Count(c => c == 'Q') == 1) return s;
		return -1;
	}
}
0