結果

問題 No.2737 Compound Word
ユーザー 能勢翔能勢翔
提出日時 2024-05-02 18:23:23
言語 C#
(.NET 8.0.404)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 12,212 ms
コンパイル使用メモリ 168,276 KB
実行使用メモリ 184,148 KB
最終ジャッジ日時 2024-11-23 11:53:34
合計ジャッジ時間 12,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 2 WA * 25
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (105 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
					
public class Program
{
	public static void Main()
	{
		int n = int.Parse(Console.ReadLine());
		
		var S = new List<string>(n);
		for (int i=0; i<n; i++) S.Add(Console.ReadLine());
		
		var permutation = 1;
		for (int i=n; i>0; i--) permutation *= i;
		
		Console.WriteLine(permutation);
	}
}
0