結果
問題 | No.294 SuperFizzBuzz |
ユーザー | ciel |
提出日時 | 2020-02-08 21:51:31 |
言語 | Ruby (3.3.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 603 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-10-01 05:27:08 |
合計ジャッジ時間 | 30,887 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
12,416 KB |
testcase_01 | AC | 79 ms
12,160 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 75 ms
12,288 KB |
testcase_04 | AC | 75 ms
12,160 KB |
testcase_05 | AC | 73 ms
12,160 KB |
testcase_06 | AC | 74 ms
12,288 KB |
testcase_07 | AC | 77 ms
12,288 KB |
testcase_08 | AC | 318 ms
12,288 KB |
testcase_09 | AC | 3,372 ms
12,288 KB |
testcase_10 | AC | 75 ms
12,416 KB |
testcase_11 | AC | 4,478 ms
12,160 KB |
testcase_12 | AC | 4,760 ms
12,416 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
コンパイルメッセージ
Syntax OK
ソースコード
def comb(n,r) if r==0 then return 1 end ret=1 if r>n/2 then r=n-r end r.times{|i| ret=ret*(n-i)/(i+1) } return ret end def popcnt32(n) m1=0x55555555 m2=0x33333333 m4=0x0f0f0f0f m8=0x00ff00ff m16=0x0000ffff n=((n>>1)&m1)+(n&m1) n=((n>>2)&m2)+(n&m2) n=((n>>4)&m4)+(n&m4) n=((n>>8)&m8)+(n&m8) n=((n>>16)&m16)+(n&m16) return n end n=gets.to_i digits=2 loop{ s=0 five=2 while five<=digits s+=comb(digits,five) five+=3 end break if n<=s n-=s digits+=1 } (1..1/0.0).each{|i| if popcnt32(i)%3==2 n-=1 if n==0 puts ('%0*b'%[digits,i]).tr('01','35')+'5' exit end end }