結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー matsuyoshi30
提出日時 2016-02-04 18:45:07
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 1,822 ms
コンパイル使用メモリ 73,408 KB
実行使用メモリ 41,236 KB
最終ジャッジ日時 2024-09-21 20:31:31
合計ジャッジ時間 5,456 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		int n = in.nextInt();

		int temp;
		for(temp=1; temp<n; temp++) {
			temp = temp * temp;
		}
	}
}
0