結果

問題 No.1700 floor X
ユーザー ripityripity
提出日時 2021-12-13 23:41:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 59,752 KB
最終ジャッジ日時 2024-07-22 23:26:55
合計ジャッジ時間 25,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,180 KB
testcase_01 AC 508 ms
59,096 KB
testcase_02 AC 456 ms
59,268 KB
testcase_03 AC 461 ms
59,404 KB
testcase_04 AC 464 ms
59,348 KB
testcase_05 AC 474 ms
59,148 KB
testcase_06 AC 469 ms
59,076 KB
testcase_07 AC 475 ms
59,360 KB
testcase_08 AC 472 ms
59,632 KB
testcase_09 AC 473 ms
59,416 KB
testcase_10 AC 468 ms
59,412 KB
testcase_11 AC 461 ms
59,196 KB
testcase_12 AC 475 ms
59,392 KB
testcase_13 AC 467 ms
59,144 KB
testcase_14 AC 464 ms
59,516 KB
testcase_15 AC 455 ms
59,340 KB
testcase_16 AC 470 ms
59,344 KB
testcase_17 AC 476 ms
59,752 KB
testcase_18 AC 483 ms
59,412 KB
testcase_19 AC 476 ms
59,628 KB
testcase_20 AC 468 ms
59,348 KB
testcase_21 AC 522 ms
59,708 KB
testcase_22 AC 514 ms
59,300 KB
testcase_23 AC 507 ms
59,400 KB
testcase_24 AC 528 ms
59,656 KB
testcase_25 AC 520 ms
59,364 KB
testcase_26 AC 504 ms
59,200 KB
testcase_27 AC 511 ms
59,548 KB
testcase_28 AC 497 ms
59,372 KB
testcase_29 AC 495 ms
59,204 KB
testcase_30 AC 501 ms
59,496 KB
testcase_31 AC 492 ms
59,420 KB
testcase_32 AC 498 ms
59,276 KB
testcase_33 AC 491 ms
59,500 KB
testcase_34 AC 496 ms
59,360 KB
testcase_35 AC 503 ms
59,520 KB
testcase_36 AC 506 ms
59,560 KB
testcase_37 AC 511 ms
59,452 KB
testcase_38 AC 514 ms
59,576 KB
testcase_39 AC 492 ms
59,576 KB
testcase_40 AC 504 ms
59,216 KB
testcase_41 AC 478 ms
59,348 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        for( int i = 0; i < T; i++ ) {
            long N = sc.nextLong();
            double[] nt = new double[500];
            nt[0] = N;
            for( int j = 1; j < 500; j++ ) {
                nt[j] = nt[j-1]-(nt[j-1]*nt[j-1]-N)/(2*nt[j-1]);
            }
            System.out.println((int)Math.floor(nt[499]));
        }
        
    }
    
}
0