結果

問題 No.648  お や す み 
ユーザー dong_fengdong_feng
提出日時 2018-04-16 00:22:00
言語 PHP
(8.3.4)
結果
RE  
実行時間 -
コード長 142 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 31,084 KB
実行使用メモリ 31,536 KB
最終ジャッジ日時 2024-06-27 02:23:54
合計ジャッジ時間 5,386 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 46 ms
31,256 KB
testcase_02 RE -
testcase_03 AC 40 ms
30,816 KB
testcase_04 AC 40 ms
31,004 KB
testcase_05 RE -
testcase_06 AC 40 ms
31,148 KB
testcase_07 AC 41 ms
30,952 KB
testcase_08 AC 40 ms
30,984 KB
testcase_09 RE -
testcase_10 AC 40 ms
31,152 KB
testcase_11 AC 41 ms
30,916 KB
testcase_12 AC 40 ms
30,932 KB
testcase_13 AC 41 ms
31,064 KB
testcase_14 AC 40 ms
30,808 KB
testcase_15 AC 40 ms
30,812 KB
testcase_16 AC 41 ms
31,088 KB
testcase_17 AC 40 ms
31,208 KB
testcase_18 AC 41 ms
30,980 KB
testcase_19 AC 40 ms
30,868 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 40 ms
31,120 KB
testcase_31 AC 41 ms
30,840 KB
testcase_32 AC 40 ms
31,180 KB
testcase_33 AC 40 ms
30,948 KB
testcase_34 AC 41 ms
30,812 KB
testcase_35 AC 41 ms
30,864 KB
testcase_36 AC 40 ms
31,088 KB
testcase_37 AC 42 ms
30,812 KB
testcase_38 AC 41 ms
30,804 KB
testcase_39 AC 40 ms
31,072 KB
testcase_40 AC 40 ms
30,660 KB
testcase_41 AC 40 ms
30,724 KB
testcase_42 AC 40 ms
30,888 KB
testcase_43 AC 40 ms
30,864 KB
testcase_44 AC 40 ms
30,912 KB
testcase_45 AC 40 ms
30,840 KB
testcase_46 AC 40 ms
31,036 KB
testcase_47 AC 40 ms
30,672 KB
testcase_48 AC 39 ms
31,124 KB
testcase_49 AC 41 ms
31,192 KB
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 AC 40 ms
30,708 KB
testcase_61 AC 39 ms
31,072 KB
testcase_62 AC 41 ms
31,020 KB
testcase_63 AC 40 ms
30,944 KB
testcase_64 AC 39 ms
31,140 KB
testcase_65 AC 40 ms
31,248 KB
testcase_66 AC 40 ms
30,928 KB
testcase_67 AC 40 ms
30,828 KB
testcase_68 AC 40 ms
31,120 KB
testcase_69 AC 40 ms
30,816 KB
testcase_70 AC 40 ms
30,680 KB
testcase_71 AC 42 ms
31,036 KB
testcase_72 AC 42 ms
30,848 KB
testcase_73 AC 41 ms
30,716 KB
testcase_74 RE -
testcase_75 RE -
testcase_76 AC 39 ms
30,840 KB
testcase_77 RE -
testcase_78 RE -
testcase_79 RE -
testcase_80 RE -
testcase_81 RE -
testcase_82 RE -
testcase_83 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
sscanf(fgets(STDIN), "%d", $n);
$m = floor(sqrt($n*2));
if($m*($m+1)/2==$n){
	echo "YES\n";
	echo m;
	echo "\n";
}else {
	echo "NO\n";
}
0