結果

問題 No.3029 素因数
ユーザー kuuso1kuuso1
提出日時 2017-04-01 00:08:17
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 991 bytes
コンパイル時間 837 ms
コンパイル使用メモリ 113,976 KB
実行使用メモリ 26,072 KB
最終ジャッジ日時 2024-07-07 13:41:29
合計ジャッジ時間 8,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
17,664 KB
testcase_01 AC 132 ms
17,536 KB
testcase_02 AC 139 ms
17,536 KB
testcase_03 AC 143 ms
17,536 KB
testcase_04 AC 150 ms
17,536 KB
testcase_05 WA -
testcase_06 AC 159 ms
17,536 KB
testcase_07 AC 163 ms
17,408 KB
testcase_08 AC 141 ms
17,664 KB
testcase_09 AC 145 ms
17,408 KB
testcase_10 AC 150 ms
17,536 KB
testcase_11 AC 152 ms
17,536 KB
testcase_12 AC 151 ms
17,536 KB
testcase_13 AC 161 ms
17,536 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 131 ms
17,408 KB
testcase_17 WA -
testcase_18 AC 126 ms
17,664 KB
testcase_19 WA -
testcase_20 AC 162 ms
17,536 KB
testcase_21 AC 125 ms
17,408 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 132 ms
17,408 KB
testcase_25 AC 154 ms
17,408 KB
testcase_26 WA -
testcase_27 AC 138 ms
17,536 KB
testcase_28 AC 136 ms
17,536 KB
testcase_29 AC 146 ms
17,280 KB
testcase_30 AC 128 ms
17,664 KB
testcase_31 AC 136 ms
17,408 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 129 ms
17,408 KB
testcase_35 AC 151 ms
17,280 KB
testcase_36 AC 137 ms
17,536 KB
testcase_37 WA -
testcase_38 AC 158 ms
17,664 KB
testcase_39 AC 157 ms
17,536 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.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Threading;
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		Thread.Sleep(M+100);
		Console.WriteLine("odd");
	}
	int M;
	public Sol(){
		M = ri();
	}

	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0