結果
問題 | No.2323 Nafmo、A+Bをする |
ユーザー | horiesiniti |
提出日時 | 2023-06-22 06:00:44 |
言語 | Ruby (3.4.1) |
結果 |
AC
|
実行時間 | 92 ms / 2,000 ms |
コード長 | 195 bytes |
コンパイル時間 | 54 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-06-29 13:51:15 |
合計ジャッジ時間 | 2,580 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
コンパイルメッセージ
Syntax OK
ソースコード
a=gets.chomp.reverse b=gets.chomp.reverse c=[] i=0 while i<a.size || i<b.size do a1=0 a1=a[i].to_i if i<a.size b1=0 b1=b[i].to_i if i<b.size c<<(a1+b1)%2 i+=1 end puts c.reverse.join("").to_i(2)