結果
問題 | No.1081 和の和 |
ユーザー | RISE70226821 |
提出日時 | 2020-08-04 17:45:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 145 ms / 2,000 ms |
コード長 | 3,094 bytes |
コンパイル時間 | 2,643 ms |
コンパイル使用メモリ | 79,944 KB |
実行使用メモリ | 41,776 KB |
最終ジャッジ日時 | 2024-09-14 19:36:47 |
合計ジャッジ時間 | 5,317 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
41,284 KB |
testcase_01 | AC | 131 ms
41,444 KB |
testcase_02 | AC | 119 ms
39,964 KB |
testcase_03 | AC | 138 ms
41,120 KB |
testcase_04 | AC | 142 ms
41,104 KB |
testcase_05 | AC | 134 ms
40,968 KB |
testcase_06 | AC | 127 ms
40,016 KB |
testcase_07 | AC | 140 ms
41,100 KB |
testcase_08 | AC | 145 ms
41,776 KB |
testcase_09 | AC | 143 ms
41,088 KB |
testcase_10 | AC | 142 ms
41,580 KB |
ソースコード
import java.util.*; import java.lang.*; import java.io.*; public class Main { public static void main (String[] args) throws java.lang.Exception { // your code goes here // 入力 Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[] A = new int[N]; for(int i = 0; i < N; i++){ A[i] = sc.nextInt(); } // 計算 for(int tail = N-1; tail > 0; tail--){ for(int i = 0; i < tail; i++){ A[i] = (A[i] + A[i+1]) % 1000000007; } } // 出力 System.out.println(A[0]); } // 関数 public static void name(){ } // 文字列のx文字目を取得する関数 public static String getPos(String str, int pos){ return String.valueOf(str.charAt(pos)); } // int型ロガー関数 public static void loggerInt(String name, int num){ String str = ""; str += name; str += " = "; str += num; System.out.println(str); } // Long型ロガー関数 public static void loggerLong(String name, Long num){ String str = ""; str += name; str += " = "; str += num; System.out.println(str); } // double型ロガー関数 public static void loggerDbl(String name, double num){ String str = ""; str += name; str += " = "; str += num; System.out.println(str); } // String型ロガー関数 public static void loggerStr(String name, String prm){ String str = ""; str += name; str += " = "; str += prm; System.out.println(str); } // boolean型ロガー関数 public static void loggerBool(String name, boolean bool){ String str = ""; str += name; str += " = "; str += bool; System.out.println(str); } // int型配列ロガー関数 public static void loggerIntAr(String name, int[] ar){ String str; for(int i = 0; i < ar.length; i++){ str = ""; str += name; str += "[" + i + "]"; str += " = "; str += ar[i]; System.out.println(str); } } // Long型配列ロガー関数 public static void loggerLongAr(String name, Long[] ar){ String str; for(int i = 0; i < ar.length; i++){ str = ""; str += name; str += "[" + i + "]"; str += " = "; str += ar[i]; System.out.println(str); } } // double型配列ロガー関数 public static void loggerDblAr(String name, double[] ar){ String str; for(int i = 0; i < ar.length; i++){ str = ""; str += name; str += "[" + i + "]"; str += " = "; str += ar[i]; System.out.println(str); } } // String型配列ロガー関数 public static void loggerStrAr(String name, String[] ar){ String str; for(int i = 0; i < ar.length; i++){ str = ""; str += name; str += "[" + i + "]"; str += " = "; str += ar[i]; System.out.println(str); } } // boolean型配列ロガー関数 public static void loggerBoolAr(String name, boolean[] ar){ String str; for(int i = 0; i < ar.length; i++){ str = ""; str += name; str += "[" + i + "]"; str += " = "; str += ar[i]; System.out.println(str); } } }