04 2023 档案

摘要:依赖安装步骤 pom.xml文件右击->maven->重新加载项目 启动项目文件代码(ReggieApplication) package com.fugui.reggir; import lombok.extern.slf4j.Slf4j; import org.springframework.b 阅读全文
posted @ 2023-04-24 15:37 96痴呆敲码 阅读(117) 评论(0) 推荐(0)
摘要:笔记仅为个人总结模板和理解,最近才开始总结,逐渐完善中。。。 快速幂: while (n) //n为多少次方{ if (n & 1) k = k * x % mod; n >>= 1; x = x * x % mod; } return k ; } 差分: for(int i=1;i<=n;i++) 阅读全文
posted @ 2023-04-03 16:52 96痴呆敲码 阅读(35) 评论(0) 推荐(0)
摘要:1107: ZN的随机数 #include<bits/stdc++.h> using namespace std; typedef long long ll; int ans; int main() { ll n,m; while(cin>>n)//在while中赋值 { ans=0; bool a 阅读全文
posted @ 2023-04-03 09:49 96痴呆敲码 阅读(17) 评论(0) 推荐(0)