結果

問題 No.111 あばばばば
ユーザー Mcpu3Mcpu3
提出日時 2018-07-20 22:24:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 475 ms / 5,000 ms
コード長 223 bytes
コンパイル時間 2,671 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-06-07 19:42:09
合計ジャッジ時間 5,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,212 KB
testcase_01 AC 134 ms
41,400 KB
testcase_02 AC 140 ms
41,452 KB
testcase_03 AC 475 ms
41,316 KB
testcase_04 AC 136 ms
41,424 KB
testcase_05 AC 135 ms
41,412 KB
testcase_06 AC 136 ms
41,556 KB
testcase_07 AC 170 ms
41,740 KB
testcase_08 AC 293 ms
41,624 KB
testcase_09 AC 135 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int l=stdIn.nextInt(),i;
		long s=1;
		for(i=3;i<l;i+=2) s+=i;
		System.out.print(s);
	}
}
0