結果

問題 No.796 well known
ユーザー urutomurutom
提出日時 2019-04-04 01:08:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 71,424 KB
最終ジャッジ日時 2024-06-06 05:17:27
合計ジャッジ時間 6,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 419 ms
60,544 KB
testcase_05 AC 534 ms
65,280 KB
testcase_06 AC 626 ms
71,296 KB
testcase_07 AC 136 ms
23,424 KB
testcase_08 AC 541 ms
65,408 KB
testcase_09 AC 283 ms
44,800 KB
testcase_10 AC 617 ms
71,040 KB
testcase_11 AC 109 ms
17,792 KB
testcase_12 AC 244 ms
38,784 KB
testcase_13 AC 484 ms
59,136 KB
testcase_14 AC 164 ms
31,104 KB
testcase_15 AC 234 ms
42,112 KB
testcase_16 AC 600 ms
71,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def check?(ans,n)
  return false unless ans.size==n
  return false if ans.any?{|v|v<1}
  sum=ans.inject(:+)
  return false unless sum%3==1
  prod=ans.inject(:*)
  return false unless prod%3==0
  sum<=312456
end

n=gets.to_i
ans=[]
loop{
  n.times{ans << rand(5)+1}
  break if check?(ans,n)
  ans=[]
}
puts ans*" "
0