結果
問題 | No.786 京都大学の過去問 |
ユーザー | silviasetitech |
提出日時 | 2020-03-14 11:48:04 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 144 ms / 2,000 ms |
コード長 | 978 bytes |
コンパイル時間 | 2,272 ms |
コンパイル使用メモリ | 74,188 KB |
実行使用メモリ | 41,296 KB |
最終ジャッジ日時 | 2024-05-02 23:06:59 |
合計ジャッジ時間 | 3,605 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
40,984 KB |
testcase_01 | AC | 144 ms
41,028 KB |
testcase_02 | AC | 141 ms
41,040 KB |
testcase_03 | AC | 135 ms
41,052 KB |
testcase_04 | AC | 136 ms
41,296 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top * * @author silviase */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); KyotoUniv solver = new KyotoUniv(); solver.solve(1, in, out); out.close(); } static class KyotoUniv { public void solve(int testNumber, Scanner in, PrintWriter out) { int n = in.nextInt(); long[] a = new long[n + 2]; a[0] = 1; for (int i = 0; i < n; i++) { a[i + 1] += a[i]; a[i + 2] += a[i]; } out.println(a[n]); } } }