完全没头绪
完全没头绪
全部文章
分类
归档
标签
去牛客网
登录
/
注册
完全没头绪的博客
全部文章
(共10篇)
题解 | #优雅的点#
using System; using System.Collections; using System.Collections.Generic; public class Program { public static void Main() { string line; ...
2023-04-03
0
364
题解 | #跳石板#
using System; using System.Collections; using System.Collections.Generic; public class Program { //取得num的因数,装在stack中 public static void div(int ...
2023-04-02
0
400
题解 | #数列还原#
using System; using System.Collections; using System.Collections.Generic; public class Program { public static void Main() { string line; ...
2023-04-01
0
366
题解 | #幸运的袋子#
using System; using System.Collections; using System.Collections.Generic; using System.Linq; public class Program { public static void Main() { ...
2023-04-01
0
471
题解 | #分苹果#
using System; using System.Collections; using System.Collections.Generic; public class Program { public static void Main() { string line; ...
2023-03-30
0
276
题解 | #分田地#
using System; using System.Collections; using System.Collections.Generic; public class Program { public static int[,] field;//每块地的价值 public s...
2023-03-30
0
398
题解 | #路灯#
using System; using System.Collections; using System.Collections.Generic; public class Program { public static void Main() { //将路灯坐标排序,计算两...
2023-03-30
0
374
题解 | #搬圆桌#
using System; using System.Collections; using System.Collections.Generic; public class Program { public static void Main() { string line; ...
2023-03-29
0
573
题解 | #扭蛋机#
using System; using System.Collections; using System.Collections.Generic; using System.Text; public class Program { public static void Main() { ...
2023-03-29
0
237
题解 | #奖学金#
using System; public class Program { public static void Main() { string line; while ((line = Console.ReadLine()) != null) { ...
2023-03-20
0
274