結果
問題 | No.1011 Infinite Stairs |
ユーザー | 37zigen |
提出日時 | 2020-03-20 21:55:45 |
言語 | Java (openjdk 23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,565 bytes |
コンパイル時間 | 6,329 ms |
コンパイル使用メモリ | 77,412 KB |
実行使用メモリ | 108,556 KB |
最終ジャッジ日時 | 2024-12-15 05:36:37 |
合計ジャッジ時間 | 39,551 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
56,552 KB |
testcase_01 | AC | 52 ms
105,112 KB |
testcase_02 | AC | 93 ms
58,084 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | AC | 53 ms
56,704 KB |
testcase_07 | AC | 158 ms
106,260 KB |
testcase_08 | AC | 52 ms
56,480 KB |
testcase_09 | AC | 61 ms
106,632 KB |
testcase_10 | AC | 164 ms
58,100 KB |
testcase_11 | AC | 1,924 ms
108,556 KB |
testcase_12 | AC | 105 ms
58,104 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 83 ms
51,312 KB |
testcase_15 | AC | 863 ms
53,488 KB |
testcase_16 | TLE | - |
testcase_17 | AC | 922 ms
53,780 KB |
testcase_18 | TLE | - |
testcase_19 | AC | 92 ms
51,208 KB |
testcase_20 | AC | 115 ms
51,152 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 1,976 ms
53,604 KB |
testcase_25 | TLE | - |
testcase_26 | AC | 994 ms
107,808 KB |
ソースコード
import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import java.util.NoSuchElementException; public class Main { public static void main(String[] args) throws FileNotFoundException { long t = System.currentTimeMillis(); new Main().run(); System.err.println(System.currentTimeMillis() - t); } Scanner sc = new Scanner(); final long MOD=(long)1e9+7; void run() { int N=sc.nextInt(); int d=sc.nextInt(); int K=sc.nextInt(); int[] dp=new int[K+1]; dp[0]=1; for(int t=0;t<N;++t) { int[] ndp=new int[K+1]; for(int i=K-1;i>=0;--i) { for(int add=1;add<=d;++add) { if(i+add<dp.length) { ndp[i+add]+=dp[i]; ndp[i+add]%=MOD; } } } dp=ndp; } System.out.println(dp[K]); } class Scanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; } else { ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1; } private boolean isPrintableChar(int c) { return 33 <= c && c <= 126; } private void skipUnprintable() { while (hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; } public boolean hasNext() { skipUnprintable(); return hasNextByte(); } public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while (isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while (true) { if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; } else if (b == -1 || !isPrintableChar(b)) { return minus ? -n : n; } else { throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { return (int) nextLong(); } } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }