結果
問題 | No.533 Mysterious Stairs |
ユーザー | fjafjafja |
提出日時 | 2017-07-17 22:47:52 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 554 bytes |
コンパイル時間 | 3,758 ms |
コンパイル使用メモリ | 74,280 KB |
実行使用メモリ | 46,104 KB |
最終ジャッジ日時 | 2024-10-08 07:18:04 |
合計ジャッジ時間 | 11,991 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
41,196 KB |
testcase_01 | AC | 140 ms
41,060 KB |
testcase_02 | AC | 139 ms
41,068 KB |
testcase_03 | AC | 140 ms
40,980 KB |
testcase_04 | AC | 137 ms
40,996 KB |
testcase_05 | AC | 138 ms
41,052 KB |
testcase_06 | AC | 143 ms
41,028 KB |
testcase_07 | AC | 142 ms
41,268 KB |
testcase_08 | AC | 148 ms
41,136 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
import java.util.Scanner; public class N533 { public static int count =0; public static int N=0; public static void main(String[] args) { Scanner sc=new Scanner(System.in); N=sc.nextInt(); for(int i=1;i<4;i++) { N533.step(i,0); } System.out.println(count%(int)(Math.pow(10, 9)*7)); } public static void step(int prestep,int now) { now+=prestep; if(now>=N) { count=(now==N)?count+1:count; return; } for(int i=1;i<3;i++) { int step=(prestep+i)%3; step=(step==0)?step+3:step; N533.step(step,now); } } }