相关文章
1155:回文三位数
1155:回文三位数 时间限制: 1000 ms 内存限制: 65536 KB 提交数: 36785 通过数: 24127
【题目描述】 如果一个数从左边读和从右边读都是同一个数,就称为回文数。例如6886就是一个回文数,求出所有的既是回文数又是素数的三位数。…
建站知识
2024/11/3 23:21:08
Codeforces 1155
1155 D 题意 给你 \(n,x\) 和一个数组 \(a\) ,现在你可以把 \(a\) 的至多一个子区间的所有元素乘上 \(x\) ,问 \(a\) 数组最终的美丽值。一个数组的美丽值为 \(\max(0,该数组的最大子段和)\) 。 \((n\le 10^5,所有数\le 10^9)\) Examples input 5 -2 -3 …
建站知识
2024/11/5 6:07:58
第46篇 ERC1155智能合约源码、部署与使用(1)
本文主要参考资料:https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
本文主要合约源码:https://github.com/OpenZeppelin/openzeppelin-contracts
本文合约部署步骤:https://blog.csdn.net/wonderBlock/article/details/109903310
本文环境:以太坊POA联盟…
建站知识
2024/11/3 23:21:00
ural 1155. Troubleduons
1155. Troubleduons Time limit: 0.5 second Memory limit: 64 MB Archangel of the Science is reporting:“O, Lord! Those physicists on the Earth have discovered a new elementary particle!”“No problem, we’ll add another parameter to the General Equation of t…
建站知识
2024/10/29 8:34:19
比较 ERC-721 和 ERC-1155
比较 ERC-721 和 ERC-1155 以太坊上新应用的到来,促使开发团队设计了新的代币标准。在早期,ERC-20代币标准(它定义了DAI或UNI等传统代币的功能)主导了市场。这种加密方法将所有资产视为完全可互换的(称为可互换性),在概念上就像美元等货币一样…
建站知识
2024/10/29 7:01:42
使用openZeppelin搭建ERC1155合约
安装openZeppelin
npm install --save-dev openzeppelin/contracts
创建一个truffle空项目
mkdir FishToken
cd FishToken
truffle init
在contracts目录下创建基于ERC1155的智能合约FishToken.sol
pragma solidity >0.6.0 <0.9.0;import "openzeppelin/contra…
建站知识
2024/11/3 23:21:00