結果
問題 | No.1218 Something Like a Theorem |
ユーザー |
|
提出日時 | 2020-11-09 10:53:59 |
言語 | Ruby (3.4.1) |
結果 |
AC
|
実行時間 | 185 ms / 2,000 ms |
コード長 | 904 bytes |
コンパイル時間 | 73 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-07-22 15:59:26 |
合計ジャッジ時間 | 2,513 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 16 |
コンパイルメッセージ
Syntax OK
ソースコード
DEBUG = trueMOD = 10**9+7def mainn, z = intsif n >= 3noreturnendz_n = z ** n(1..z).each do |x|x_n = x ** n(1..z).each do |y|if x_n + y ** n == z_nyesreturnendendendnoenddef int; gets.to_i; enddef ints; gets.split.map &:to_i; enddef string; gets.chomp; enddef rep(n, &b); n.times.map(&b); enddef yes; puts "Yes"; enddef no; puts "No"; enddef yesno t; t ? Yes : No; enddef debug(x); STDERR.puts x.inspect if DEBUG; enddef factorial(n, mod); (2..n).inject(1) { |f, x| f * x % mod }; enddef cumsum(xs); ys = [0]; xs.each { |x| ys << x + ys[-1] }; ys; enddef cumdiff(ys); xs = []; xs.inject { |x, y| xs << (d = y - x); d }; enddef mod_inv(x, mod); x.pow(mod-2, mod); enddef mod_div(x, y, mod); x * mod_inv(y, mod) % mod; endmain