結果
問題 | No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用) |
ユーザー | mikit |
提出日時 | 2019-04-01 21:44:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 268 ms / 3,000 ms |
コード長 | 3,866 bytes |
コンパイル時間 | 2,478 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 45,820 KB |
最終ジャッジ日時 | 2024-05-05 04:24:44 |
合計ジャッジ時間 | 7,370 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
37,948 KB |
testcase_01 | AC | 66 ms
37,656 KB |
testcase_02 | AC | 65 ms
38,144 KB |
testcase_03 | AC | 67 ms
38,068 KB |
testcase_04 | AC | 59 ms
37,684 KB |
testcase_05 | AC | 57 ms
37,796 KB |
testcase_06 | AC | 87 ms
38,892 KB |
testcase_07 | AC | 122 ms
41,040 KB |
testcase_08 | AC | 178 ms
43,920 KB |
testcase_09 | AC | 201 ms
44,864 KB |
testcase_10 | AC | 265 ms
45,648 KB |
testcase_11 | AC | 236 ms
45,820 KB |
testcase_12 | AC | 235 ms
45,768 KB |
testcase_13 | AC | 268 ms
45,632 KB |
testcase_14 | AC | 262 ms
45,180 KB |
testcase_15 | AC | 236 ms
45,380 KB |
testcase_16 | AC | 239 ms
45,672 KB |
testcase_17 | AC | 58 ms
37,832 KB |
testcase_18 | AC | 61 ms
37,788 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.stream.LongStream; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.UncheckedIOException; import java.nio.charset.Charset; import java.util.StringTokenizer; import java.io.Writer; import java.io.OutputStreamWriter; import java.io.BufferedReader; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top * * @author mikit */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; LightScanner in = new LightScanner(inputStream); LightWriter out = new LightWriter(outputStream); yukicoder solver = new yukicoder(); solver.solve(1, in, out); out.close(); } static class yukicoder { public void solve(int testNumber, LightScanner in, LightWriter out) { out.ansln(LongStream.range(0, in.ints()).map(x -> in.longs()).sum()); } } static class LightWriter implements AutoCloseable { private final Writer out; private boolean autoflush = false; private boolean breaked = true; public LightWriter(Writer out) { this.out = out; } public LightWriter(OutputStream out) { this(new BufferedWriter(new OutputStreamWriter(out, Charset.defaultCharset()))); } public LightWriter print(char c) { try { out.write(c); breaked = false; } catch (IOException ex) { throw new UncheckedIOException(ex); } return this; } public LightWriter print(String s) { try { out.write(s, 0, s.length()); breaked = false; } catch (IOException ex) { throw new UncheckedIOException(ex); } return this; } public LightWriter ans(String s) { if (!breaked) { print(' '); } return print(s); } public LightWriter ans(long l) { return ans(Long.toString(l)); } public LightWriter ansln(long... n) { for (long n1 : n) { ans(n1).ln(); } return this; } public LightWriter ln() { print(System.lineSeparator()); breaked = true; if (autoflush) { try { out.flush(); } catch (IOException ex) { throw new UncheckedIOException(ex); } } return this; } public void close() { try { out.close(); } catch (IOException ex) { throw new UncheckedIOException(ex); } } } static class LightScanner { private BufferedReader reader = null; private StringTokenizer tokenizer = null; public LightScanner(InputStream in) { reader = new BufferedReader(new InputStreamReader(in)); } public String string() { if (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new UncheckedIOException(e); } } return tokenizer.nextToken(); } public int ints() { return Integer.parseInt(string()); } public long longs() { return Long.parseLong(string()); } } }