結果

問題 No.9005 実行時間/使用メモリテスト(テスト用)
ユーザー kuuso1kuuso1
提出日時 2016-03-15 03:17:53
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,049 bytes
コンパイル時間 1,739 ms
コンパイル使用メモリ 111,148 KB
実行使用メモリ 35,968 KB
最終ジャッジ日時 2024-04-08 13:15:32
合計ジャッジ時間 10,294 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Threading.Tasks;
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		int N=ri();
		long mod=(long)1e9+7;
		long x=3;
		for(long i=0;i<mod;i++){
			x*=3;
			if(x>=mod)x%=mod;
		}
		
		Console.WriteLine(0);
		
		
	}
	
	public Sol(){
		
	}

	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