diff --git a/.gitignore b/.gitignore index 0696a71..8bbb90e 100644 --- a/.gitignore +++ b/.gitignore @@ -22,4 +22,8 @@ output/ Thumbs.db # 排除竞赛平台配置文件 -.cph/ \ No newline at end of file +.cph/ + +# 排除作业相关目录 +作业/刘航宇-day* +作业/提交/ diff --git a/bin/Main.class b/bin/Main.class index aa31998..b028a8e 100644 Binary files a/bin/Main.class and b/bin/Main.class differ diff --git a/exercise/bin/Main.class b/exercise/bin/Main.class index 89e5249..7d0d49c 100644 Binary files a/exercise/bin/Main.class and b/exercise/bin/Main.class differ diff --git a/exercise/bin/P1098.class b/exercise/bin/P1098.class deleted file mode 100644 index d5860e4..0000000 Binary files a/exercise/bin/P1098.class and /dev/null differ diff --git a/exercise/bin/P2840.class b/exercise/bin/P2840.class deleted file mode 100644 index a1d0ec9..0000000 Binary files a/exercise/bin/P2840.class and /dev/null differ diff --git a/exercise/bin/P2857.class b/exercise/bin/P2857.class deleted file mode 100644 index 4a674b5..0000000 Binary files a/exercise/bin/P2857.class and /dev/null differ diff --git a/exercise/bin/P2895.class b/exercise/bin/P2895.class deleted file mode 100644 index 9f6d709..0000000 Binary files a/exercise/bin/P2895.class and /dev/null differ diff --git a/exercise/bin/P2966.class b/exercise/bin/P2966.class deleted file mode 100644 index 55f1d92..0000000 Binary files a/exercise/bin/P2966.class and /dev/null differ diff --git a/exercise/bin/P2967.class b/exercise/bin/P2967.class deleted file mode 100644 index 05d5639..0000000 Binary files a/exercise/bin/P2967.class and /dev/null differ diff --git a/exercise/bin/P2969.class b/exercise/bin/P2969.class deleted file mode 100644 index 4dd3ac7..0000000 Binary files a/exercise/bin/P2969.class and /dev/null differ diff --git a/exercise/bin/P2972.class b/exercise/bin/P2972.class deleted file mode 100644 index 392fbef..0000000 Binary files a/exercise/bin/P2972.class and /dev/null differ diff --git a/exercise/bin/P2973.class b/exercise/bin/P2973.class deleted file mode 100644 index bb40686..0000000 Binary files a/exercise/bin/P2973.class and /dev/null differ diff --git a/exercise/bin/P2975.class b/exercise/bin/P2975.class deleted file mode 100644 index 3c9ad34..0000000 Binary files a/exercise/bin/P2975.class and /dev/null differ diff --git a/exercise/bin/P2977.class b/exercise/bin/P2977.class deleted file mode 100644 index 85d8c81..0000000 Binary files a/exercise/bin/P2977.class and /dev/null differ diff --git a/exercise/bin/P2981.class b/exercise/bin/P2981.class deleted file mode 100644 index 6238e75..0000000 Binary files a/exercise/bin/P2981.class and /dev/null differ diff --git a/exercise/bin/P2984.class b/exercise/bin/P2984.class deleted file mode 100644 index 2b774d3..0000000 Binary files a/exercise/bin/P2984.class and /dev/null differ diff --git a/exercise/bin/P2989.class b/exercise/bin/P2989.class deleted file mode 100644 index 81fc5cc..0000000 Binary files a/exercise/bin/P2989.class and /dev/null differ diff --git a/exercise/bin/PTable.class b/exercise/bin/PTable.class deleted file mode 100644 index 6597c23..0000000 Binary files a/exercise/bin/PTable.class and /dev/null differ diff --git a/exercise/src/Main.java b/exercise/src/Main.java index 88493f0..d3e2ea7 100644 --- a/exercise/src/Main.java +++ b/exercise/src/Main.java @@ -3,41 +3,30 @@ import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); - int n = in.nextInt(); - int[] mention = new int[101]; - boolean[][] by = new boolean[101][101]; - for (int i = 0; i < n; i++) { - int sender = in.nextInt(); - int k = in.nextInt(); - for (int j = 0; j < k; j++) { - int id = in.nextInt(); - if (id >= 0 && id <= 100) { - mention[id]++; - if (sender >= 0 && sender <= 100) - by[id][sender] = true; + if (in.hasNextInt()) { + int n = in.nextInt(); + int[] arr = new int[n]; + for (int i = 0; i < n; i++) { + arr[i] = in.nextInt(); + } + + // 题目要求计算最少交换次数,即逆序对的数量 + // 使用冒泡排序的交换次数来统计 + int swaps = 0; + for (int i = 0; i < n - 1; i++) { + for (int j = 0; j < n - 1 - i; j++) { + if (arr[j] > arr[j + 1]) { + // 交换 + int temp = arr[j]; + arr[j] = arr[j + 1]; + arr[j + 1] = temp; + swaps++; + } } } + + System.out.println(swaps); } - int bestId = 0; - int bestCount = -1; - for (int id = 0; id <= 100; id++) { - if (mention[id] > bestCount) { - bestCount = mention[id]; - bestId = id; - } - } - System.out.println(bestId); - StringBuilder sb = new StringBuilder(); - boolean first = true; - for (int s = 0; s <= 100; s++) { - if (by[bestId][s]) { - if (!first) - sb.append(' '); - sb.append(s); - first = false; - } - } - System.out.println(sb.toString()); in.close(); } } \ No newline at end of file diff --git a/作业/作业/刘航宇-day47/第一题/Main.java b/作业/作业/刘航宇-day47/第一题/Main.java new file mode 100644 index 0000000..afc6da2 --- /dev/null +++ b/作业/作业/刘航宇-day47/第一题/Main.java @@ -0,0 +1,31 @@ +import java.util.Scanner; + +public class Main { + public static void main(String[] args) { + Scanner in = new Scanner(System.in); + if (in.hasNextLine()) { + String s1 = in.nextLine(); + if (in.hasNextLine()) { + String s2 = in.nextLine(); + + String longer, shorter; + if (s1.length() >= s2.length()) { + longer = s1; + shorter = s2; + } else { + longer = s2; + shorter = s1; + } + + // 将短的字符串内容覆盖到长的字符串内(从头开始) + StringBuilder sb = new StringBuilder(longer); + for (int i = 0; i < shorter.length(); i++) { + sb.setCharAt(i, shorter.charAt(i)); + } + + System.out.println(sb.toString()); + } + } + in.close(); + } +} \ No newline at end of file diff --git a/作业/作业/刘航宇-day47/第一题/image.png b/作业/作业/刘航宇-day47/第一题/image.png new file mode 100644 index 0000000..f2b1e74 Binary files /dev/null and b/作业/作业/刘航宇-day47/第一题/image.png differ diff --git a/作业/作业/刘航宇-day47/第三题/Main.java b/作业/作业/刘航宇-day47/第三题/Main.java new file mode 100644 index 0000000..d3e2ea7 --- /dev/null +++ b/作业/作业/刘航宇-day47/第三题/Main.java @@ -0,0 +1,32 @@ +import java.util.Scanner; + +public class Main { + public static void main(String[] args) { + Scanner in = new Scanner(System.in); + if (in.hasNextInt()) { + int n = in.nextInt(); + int[] arr = new int[n]; + for (int i = 0; i < n; i++) { + arr[i] = in.nextInt(); + } + + // 题目要求计算最少交换次数,即逆序对的数量 + // 使用冒泡排序的交换次数来统计 + int swaps = 0; + for (int i = 0; i < n - 1; i++) { + for (int j = 0; j < n - 1 - i; j++) { + if (arr[j] > arr[j + 1]) { + // 交换 + int temp = arr[j]; + arr[j] = arr[j + 1]; + arr[j + 1] = temp; + swaps++; + } + } + } + + System.out.println(swaps); + } + in.close(); + } +} \ No newline at end of file diff --git a/作业/作业/刘航宇-day47/第三题/image.png b/作业/作业/刘航宇-day47/第三题/image.png new file mode 100644 index 0000000..95f1c98 Binary files /dev/null and b/作业/作业/刘航宇-day47/第三题/image.png differ diff --git a/作业/作业/刘航宇-day47/第二题/Main.java b/作业/作业/刘航宇-day47/第二题/Main.java new file mode 100644 index 0000000..a776c07 --- /dev/null +++ b/作业/作业/刘航宇-day47/第二题/Main.java @@ -0,0 +1,39 @@ +import java.util.Arrays; +import java.util.Scanner; + +public class Main { + public static void main(String[] args) { + Scanner in = new Scanner(System.in); + if (in.hasNextInt()) { + int n = in.nextInt(); + int t = in.nextInt(); + + int[] a = new int[n]; + for (int i = 0; i < n; i++) { + a[i] = in.nextInt(); + } + + int[] b = new int[n]; + for (int i = 0; i < n; i++) { + b[i] = in.nextInt(); + } + + // 贪心策略:将 A 升序排序,B 升序排序 + // 然后将 A 中最小的与 B 中最大的配对 + Arrays.sort(a); + Arrays.sort(b); + + long totalOvertime = 0; + for (int i = 0; i < n; i++) { + // A[i] 配对 B[n - 1 - i] + int time = a[i] + b[n - 1 - i]; + if (time > t) { + totalOvertime += (time - t); + } + } + + System.out.println(totalOvertime); + } + in.close(); + } +} \ No newline at end of file diff --git a/作业/作业/刘航宇-day47/第二题/image.png b/作业/作业/刘航宇-day47/第二题/image.png new file mode 100644 index 0000000..31638c9 Binary files /dev/null and b/作业/作业/刘航宇-day47/第二题/image.png differ diff --git a/作业/作业/刘航宇-day48/第一题/image.png b/作业/作业/刘航宇-day48/第一题/image.png new file mode 100644 index 0000000..2680304 Binary files /dev/null and b/作业/作业/刘航宇-day48/第一题/image.png differ diff --git a/作业/作业/刘航宇-day48/第三题/Main.java b/作业/作业/刘航宇-day48/第三题/Main.java new file mode 100644 index 0000000..cbd5c2a --- /dev/null +++ b/作业/作业/刘航宇-day48/第三题/Main.java @@ -0,0 +1,106 @@ +import java.util.Scanner; + +public class Main { + static final long MOD = 1000000007; + static long[] powerOf10; + static Node[][][] memo; + static int[] digits; + + static class Node { + long cnt; + long sum; + long sqSum; + + public Node(long c, long s, long sq) { + this.cnt = c; + this.sum = s; + this.sqSum = sq; + } + } + + public static void main(String[] args) { + Scanner in = new Scanner(System.in); + // 初始化10的幂次 + powerOf10 = new long[20]; + powerOf10[0] = 1; + for (int i = 1; i < 20; i++) { + powerOf10[i] = (powerOf10[i - 1] * 10) % MOD; + } + + if (in.hasNextLong()) { + long l = in.nextLong(); + long r = in.nextLong(); + long ans = (solve(r) - solve(l - 1) + MOD) % MOD; + System.out.println(ans); + } + in.close(); + } + + static long solve(long n) { + if (n == 0) + return 0; + String s = String.valueOf(n); + int len = s.length(); + digits = new int[len]; + for (int i = 0; i < len; i++) { + digits[i] = s.charAt(len - 1 - i) - '0'; + } + + // 重置memo + memo = new Node[len + 1][7][7]; + + Node res = dfs(len - 1, 0, 0, true); + return res.sqSum; + } + + static Node dfs(int pos, int valRem, int sumRem, boolean limit) { + if (pos < 0) { + // 如果数字本身不是7的倍数,且各位数字之和不是7的倍数,则有效 + // (含7的情况已在循环中跳过) + if (valRem != 0 && sumRem != 0) { + return new Node(1, 0, 0); + } + return new Node(0, 0, 0); + } + if (!limit && memo[pos][valRem][sumRem] != null) { + return memo[pos][valRem][sumRem]; + } + + int up = limit ? digits[pos] : 9; + long cnt = 0; + long sum = 0; + long sqSum = 0; + + for (int d = 0; d <= up; d++) { + if (d == 7) + continue; // 跳过含7的情况 + + Node next = dfs(pos - 1, (valRem * 10 + d) % 7, (sumRem + d) % 7, limit && (d == up)); + + if (next.cnt > 0) { + long p = powerOf10[pos]; + long val = (d * p) % MOD; + long val2 = (val * val) % MOD; + + // 更新计数 + cnt = (cnt + next.cnt) % MOD; + + // 更新和: sum += next.sum + val * next.cnt + long termSum = (val * next.cnt) % MOD; + sum = (sum + next.sum + termSum) % MOD; + + // 更新平方和: sqSum += next.sqSum + 2 * val * next.sum + val^2 * next.cnt + long termSq1 = next.sqSum; + long termSq2 = (2 * val % MOD * next.sum) % MOD; + long termSq3 = (val2 * next.cnt) % MOD; + sqSum = (sqSum + termSq1 + termSq2 + termSq3) % MOD; + } + } + + Node res = new Node(cnt, sum, sqSum); + if (!limit) { + memo[pos][valRem][sumRem] = res; + } + return res; + } +} \ No newline at end of file diff --git a/作业/作业/刘航宇-day48/第三题/image.png b/作业/作业/刘航宇-day48/第三题/image.png new file mode 100644 index 0000000..769bf1e Binary files /dev/null and b/作业/作业/刘航宇-day48/第三题/image.png differ diff --git a/作业/作业/刘航宇-day48/第二题/Main.java b/作业/作业/刘航宇-day48/第二题/Main.java new file mode 100644 index 0000000..ee873d2 --- /dev/null +++ b/作业/作业/刘航宇-day48/第二题/Main.java @@ -0,0 +1,18 @@ +import java.util.Scanner; +import java.math.BigInteger; + +public class Main { + public static void main(String[] args) { + Scanner in = new Scanner(System.in); + if (in.hasNext()) { + String s1 = in.next(); + if (in.hasNext()) { + String s2 = in.next(); + BigInteger a = new BigInteger(s1); + BigInteger b = new BigInteger(s2); + System.out.println(a.add(b)); + } + } + in.close(); + } +} \ No newline at end of file diff --git a/作业/作业/刘航宇-day48/第二题/image.png b/作业/作业/刘航宇-day48/第二题/image.png new file mode 100644 index 0000000..1352b30 Binary files /dev/null and b/作业/作业/刘航宇-day48/第二题/image.png differ diff --git a/作业/压缩包/刘航宇-day1.zip b/作业/压缩包/刘航宇-day1.zip deleted file mode 100644 index 7dae520..0000000 Binary files a/作业/压缩包/刘航宇-day1.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day10.zip b/作业/压缩包/刘航宇-day10.zip deleted file mode 100644 index e79544e..0000000 Binary files a/作业/压缩包/刘航宇-day10.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day11.zip b/作业/压缩包/刘航宇-day11.zip deleted file mode 100644 index bc5558a..0000000 Binary files a/作业/压缩包/刘航宇-day11.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day12.zip b/作业/压缩包/刘航宇-day12.zip deleted file mode 100644 index 849c4c5..0000000 Binary files a/作业/压缩包/刘航宇-day12.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day13.zip b/作业/压缩包/刘航宇-day13.zip deleted file mode 100644 index d9e78d9..0000000 Binary files a/作业/压缩包/刘航宇-day13.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day14.zip b/作业/压缩包/刘航宇-day14.zip deleted file mode 100644 index 83f1499..0000000 Binary files a/作业/压缩包/刘航宇-day14.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day15.zip b/作业/压缩包/刘航宇-day15.zip deleted file mode 100644 index 1f785cc..0000000 Binary files a/作业/压缩包/刘航宇-day15.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day16.zip b/作业/压缩包/刘航宇-day16.zip deleted file mode 100644 index 65c355b..0000000 Binary files a/作业/压缩包/刘航宇-day16.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day17.zip b/作业/压缩包/刘航宇-day17.zip deleted file mode 100644 index 84643cd..0000000 Binary files a/作业/压缩包/刘航宇-day17.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day18.zip b/作业/压缩包/刘航宇-day18.zip deleted file mode 100644 index 08ce3d1..0000000 Binary files a/作业/压缩包/刘航宇-day18.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day19.zip b/作业/压缩包/刘航宇-day19.zip deleted file mode 100644 index 3226d78..0000000 Binary files a/作业/压缩包/刘航宇-day19.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day2.zip b/作业/压缩包/刘航宇-day2.zip deleted file mode 100644 index db2355f..0000000 Binary files a/作业/压缩包/刘航宇-day2.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day20.zip b/作业/压缩包/刘航宇-day20.zip deleted file mode 100644 index 87f91dc..0000000 Binary files a/作业/压缩包/刘航宇-day20.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day21.zip b/作业/压缩包/刘航宇-day21.zip deleted file mode 100644 index 5d3dab4..0000000 Binary files a/作业/压缩包/刘航宇-day21.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day22.zip b/作业/压缩包/刘航宇-day22.zip deleted file mode 100644 index e8639b2..0000000 Binary files a/作业/压缩包/刘航宇-day22.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day23.zip b/作业/压缩包/刘航宇-day23.zip deleted file mode 100644 index e2a6c8f..0000000 Binary files a/作业/压缩包/刘航宇-day23.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day24.zip b/作业/压缩包/刘航宇-day24.zip deleted file mode 100644 index f45a5f6..0000000 Binary files a/作业/压缩包/刘航宇-day24.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day25.zip b/作业/压缩包/刘航宇-day25.zip deleted file mode 100644 index bbb8cb1..0000000 Binary files a/作业/压缩包/刘航宇-day25.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day26.zip b/作业/压缩包/刘航宇-day26.zip deleted file mode 100644 index 6ce164b..0000000 Binary files a/作业/压缩包/刘航宇-day26.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day27.zip b/作业/压缩包/刘航宇-day27.zip deleted file mode 100644 index 006051f..0000000 Binary files a/作业/压缩包/刘航宇-day27.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day28.zip b/作业/压缩包/刘航宇-day28.zip deleted file mode 100644 index 6698587..0000000 Binary files a/作业/压缩包/刘航宇-day28.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day29.zip b/作业/压缩包/刘航宇-day29.zip deleted file mode 100644 index 2db1219..0000000 Binary files a/作业/压缩包/刘航宇-day29.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day3.zip b/作业/压缩包/刘航宇-day3.zip deleted file mode 100644 index 2b4dde2..0000000 Binary files a/作业/压缩包/刘航宇-day3.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day30.zip b/作业/压缩包/刘航宇-day30.zip deleted file mode 100644 index 3adfc0e..0000000 Binary files a/作业/压缩包/刘航宇-day30.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day31.zip b/作业/压缩包/刘航宇-day31.zip deleted file mode 100644 index 37bba93..0000000 Binary files a/作业/压缩包/刘航宇-day31.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day32.zip b/作业/压缩包/刘航宇-day32.zip deleted file mode 100644 index 4ea8723..0000000 Binary files a/作业/压缩包/刘航宇-day32.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day33.zip b/作业/压缩包/刘航宇-day33.zip deleted file mode 100644 index f86d29c..0000000 Binary files a/作业/压缩包/刘航宇-day33.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day34.zip b/作业/压缩包/刘航宇-day34.zip deleted file mode 100644 index 92122c2..0000000 Binary files a/作业/压缩包/刘航宇-day34.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day35.zip b/作业/压缩包/刘航宇-day35.zip deleted file mode 100644 index 70a7a63..0000000 Binary files a/作业/压缩包/刘航宇-day35.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day36.zip b/作业/压缩包/刘航宇-day36.zip deleted file mode 100644 index e06e1cc..0000000 Binary files a/作业/压缩包/刘航宇-day36.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day37.zip b/作业/压缩包/刘航宇-day37.zip deleted file mode 100644 index 8ce8b1d..0000000 Binary files a/作业/压缩包/刘航宇-day37.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day38.zip b/作业/压缩包/刘航宇-day38.zip deleted file mode 100644 index a13600f..0000000 Binary files a/作业/压缩包/刘航宇-day38.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day39.zip b/作业/压缩包/刘航宇-day39.zip deleted file mode 100644 index 0f67fa9..0000000 Binary files a/作业/压缩包/刘航宇-day39.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day4.zip b/作业/压缩包/刘航宇-day4.zip deleted file mode 100644 index 0a64bb4..0000000 Binary files a/作业/压缩包/刘航宇-day4.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day40.zip b/作业/压缩包/刘航宇-day40.zip deleted file mode 100644 index 2617846..0000000 Binary files a/作业/压缩包/刘航宇-day40.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day41.zip b/作业/压缩包/刘航宇-day41.zip deleted file mode 100644 index ea9a1dd..0000000 Binary files a/作业/压缩包/刘航宇-day41.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day42.zip b/作业/压缩包/刘航宇-day42.zip deleted file mode 100644 index 012c864..0000000 Binary files a/作业/压缩包/刘航宇-day42.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day43.zip b/作业/压缩包/刘航宇-day43.zip deleted file mode 100644 index a34bb12..0000000 Binary files a/作业/压缩包/刘航宇-day43.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day44.zip b/作业/压缩包/刘航宇-day44.zip deleted file mode 100644 index b3cbed0..0000000 Binary files a/作业/压缩包/刘航宇-day44.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day45.zip b/作业/压缩包/刘航宇-day45.zip deleted file mode 100644 index 7cbf1e0..0000000 Binary files a/作业/压缩包/刘航宇-day45.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day46.zip b/作业/压缩包/刘航宇-day46.zip deleted file mode 100644 index ec76abb..0000000 Binary files a/作业/压缩包/刘航宇-day46.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day5.zip b/作业/压缩包/刘航宇-day5.zip deleted file mode 100644 index a541006..0000000 Binary files a/作业/压缩包/刘航宇-day5.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day6.zip b/作业/压缩包/刘航宇-day6.zip deleted file mode 100644 index 2822009..0000000 Binary files a/作业/压缩包/刘航宇-day6.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day7.zip b/作业/压缩包/刘航宇-day7.zip deleted file mode 100644 index 1e8a065..0000000 Binary files a/作业/压缩包/刘航宇-day7.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day8.zip b/作业/压缩包/刘航宇-day8.zip deleted file mode 100644 index 45cd342..0000000 Binary files a/作业/压缩包/刘航宇-day8.zip and /dev/null differ diff --git a/作业/压缩包/刘航宇-day9.zip b/作业/压缩包/刘航宇-day9.zip deleted file mode 100644 index efbbd75..0000000 Binary files a/作业/压缩包/刘航宇-day9.zip and /dev/null differ diff --git a/作业/题目/day48.docx b/作业/题目/day48.docx new file mode 100644 index 0000000..4106009 Binary files /dev/null and b/作业/题目/day48.docx differ diff --git a/作业/题目/~$day47.docx b/作业/题目/~$day47.docx new file mode 100644 index 0000000..542d9d4 Binary files /dev/null and b/作业/题目/~$day47.docx differ