結果

問題 No.1089 三変数方程式
ユーザー simansiman
提出日時 2020-07-21 04:14:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 120 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-07 14:38:10
合計ジャッジ時間 4,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
12,160 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 98 ms
12,032 KB
testcase_03 AC 325 ms
12,032 KB
testcase_04 AC 103 ms
12,288 KB
testcase_05 AC 462 ms
12,288 KB
testcase_06 AC 169 ms
12,160 KB
testcase_07 AC 126 ms
12,032 KB
testcase_08 AC 385 ms
12,160 KB
testcase_09 AC 99 ms
12,160 KB
testcase_10 AC 346 ms
12,160 KB
testcase_11 AC 166 ms
12,032 KB
testcase_12 AC 282 ms
12,160 KB
testcase_13 AC 167 ms
12,160 KB
testcase_14 AC 310 ms
12,032 KB
testcase_15 AC 393 ms
12,160 KB
testcase_16 AC 347 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
ans = 0

0.upto(N) do |x|
  0.upto(N) do |y|
    break if N < x + y
    
    ans += 1
  end
end

puts ans
0