結果
問題 | No.276 連続する整数の和(1) |
ユーザー | Grenache |
提出日時 | 2015-09-04 22:28:17 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 344 bytes |
コンパイル時間 | 3,402 ms |
コンパイル使用メモリ | 74,360 KB |
実行使用メモリ | 41,708 KB |
最終ジャッジ日時 | 2024-07-19 00:00:44 |
合計ジャッジ時間 | 5,125 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 114 ms
40,496 KB |
testcase_01 | AC | 115 ms
41,048 KB |
testcase_02 | AC | 118 ms
40,992 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import java.util.Scanner; public class Main_yukicoder276 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long n = sc.nextLong(); if (n == 1) { System.out.println("1"); } else { System.out.println(n * (n - 1) / 2); } sc.close(); } }