結果

問題 No.1329 Square Sqsq
ユーザー maguroflymagurofly
提出日時 2021-01-08 22:36:49
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 64 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 53,376 KB
最終ジャッジ日時 2024-11-16 13:40:54
合計ジャッジ時間 52,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
17,408 KB
testcase_01 AC 95 ms
40,448 KB
testcase_02 AC 95 ms
17,536 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 88 ms
41,856 KB
testcase_16 AC 76 ms
17,408 KB
testcase_17 AC 1,283 ms
53,376 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 649 ms
27,008 KB
testcase_21 AC 246 ms
18,304 KB
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
puts (1 .. 1000000).find { |i| 10 ** (i * 2) > N }
0