首页 > 其他分享 >第四次限时训练题目大意及ac代码

第四次限时训练题目大意及ac代码

时间:2023-01-06 21:45:16浏览次数:70  
标签:ac 限时 cout int cin -- 大意 include

第四次限时训练题目大意及ac代码

Atilla's Favorite Problem

题目大意

accode

#include <bits/stdc++.h>
#define int long long

using namespace std;

signed main()
{
    ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);

    int T;
    cin >> T;
    while (T--)
    {
        int n;
        cin >> n;
        string s;
        cin >> s;
        int x = 0;
        for (int i = 0; i < s.size(); i++)
        {
            int t = s[i] - 'a' + 1;
            x = max(t, x);
        }
        cout << x << "\n"

Minimum Varied Number

题目大意

accode

#include <bits/stdc++.h>
#define int long long

using namespace std;

int a[50];
int n;

signed main()
{
    ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);

    int T;
    cin >> T;
    while (T--)
    {
        cin >> n;
        for (int i = 1; i <= 40; i++)
            a[i] = 0;
        int x = 9;
        int k = 1;
        while (n)
        {
            if (n >= x)
            {
                n -= x;
                a[k] = x;
                x--;
                k++;
            }
            else
                x--;
        }
        for (int i = k - 1; i >= 1; i--)
            cout << a[i];
        cout << "\n";
    }
    return 0;
}

Brain's Photos

题目大意

accode

#include <fstream>
#include <iostream>
#include <stdlib.h>
#include <vector>
#include <string>
using namespace std;
const int N = 20;

int main()
{
    int n, m;
    cin >> n >> m;
    getchar();
    string s[100];
    for (int i = 0; i < n; i++)
    {
        getline(cin, s[i]);
    }
    bool temp = false;
    for (int i = 0; i < n; i++)
    {
        for (int j = 0; j < s[i].size(); j++)
        {
            if (s[i][j] == 'C' || s[i][j] == 'M' || s[i][j] == 'Y')
            {
                temp = true;
                break;
            }
        }
    }
    if (temp) cout << "#Color" << endl;
    else cout << "#Black&White" << endl;
    return 0;
}

Soldier and Bananas

题目大意

accode

#include <fstream>
#include <iostream>
#include <stdlib.h>
#include <vector>
#include <string>
using namespace std;
const int N = 20;

int main()
{
    int k, n, w;
    cin >> k >> n >> w;
    int sum = 0;
    for (int i = 1; i <= w; i++)
    {
        sum += i;
    }
    if (n >= sum * k) cout << 0 << endl;
    else cout << sum * k - n << endl;
    return 0;
}

标签:ac,限时,cout,int,cin,--,大意,include
From: https://www.cnblogs.com/x1uc/p/17031651.html

相关文章

  • Oracle11g Rman备份备忘录
    0x00 rman是什么RecoveryManager(RMAN) rman就是oracle官方推出的一种物理备份工具,以oracleblock为读取单位可以结合expdp使用做备份,可以实现更小粒度的备份。rman......
  • K8S如何强制删除namespace
    我们有时候会遇到namespace无法删除的情况是因为 finalizers属性的原因1.将cert-mamaner导出为json文件kubectlgetnscert-manager-ojson>cert.json2.编辑cert.js......
  • Proj Unknown Paper Reading: SAILFISH: Vetting Smart Contract State-Inconsistency
    Abstract本文:SAILFISHTASK:findstate-inconsistencybugsinsmartcontractsMethod:ahybridapproach,1.alightweightexplorationphase2.一种新的value-su......
  • CPU Cache 高速缓存
    存储器的层次结构从Cache、内存,到SSD和HDD硬盘,一台现代计算机中,就用上了所有这些存储器设备。其中,容量越小的设备速度越快,而且,CPU并不是直接和每一种存储器设备打......
  • AcWing 4366. 上课睡觉
    AcWing4366.上课睡觉好久没写题,一写就发现脑子生锈了(。题目描述有\(N\)堆石子,每堆的石子数量分别为\(a_1,a_2,⋯,a_N\)。你可以对石子堆进行合并操作,将两个相邻......
  • USACO 2022 December Contest
    USACO2022DecemberContest参加的USACO的第一次比赛。没有打现场赛,后来跟着看了看题目,感觉总的来说,难度中等偏上,虽有些乏力,但是没有超出能力范围。下次争取打现场赛。P......
  • SpringBoot @Cacheable 缓存不生效的问题
    背景Springboot+CaffeineCache+使用@Cacheable注解请求查询一个方法,因为数据变化频率低,查询频率高,于是使用缓存,并使用注解。但发现用了@Cacheable这个注解,发现并......
  • 内网渗透-at&schtasks&impacket的使用
    内网机器结构 机器账号密码如下:2008r2webserver域内web服务器本地管理员账号密码:.\administraotr:admin!@#45当前机器域用户密码:god\webadmi......
  • Gigabyte B450 Aorus Elite AMD Ryzen 5 3600电脑 Hackintosh 黑苹果efi引导文件
    硬件型号驱动情况主板GigabyteB450AorusElite处理器AMDRyzen53600已驱动内存16GBSamsungDDR31600MHz已驱动硬盘Samsung840Evo250GB已驱动显卡AMDRadeonRX570......
  • Caused by: java.lang.NoClassDefFoundError: com/fasterxml/jackson/datatype/jsr310
    Causedby:java.lang.NoClassDefFoundError:com/fasterxml/jackson/datatype/jsr310/ser/ZoneIdSerializer 1、报错信息SpringBoot项目启动的时候,报错如下:Caused......