FOJ 2206 函数求解

水题

/* ***********************************************
Author        :Zhou Zhentao
Email         :[email protected]
Created Time  :2015/11/20 17:06:34
File Name     :acm.cpp
************************************************ */

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;

int F(int x){
    if(x<20150001) return x+2014;
    return 20152014;
}

int main(){
    int n, T;
    scanf("%d",&T);
    while(T--){
        scanf("%d",&n);
        printf("%d\n",F(n));
    }
    return 0;
}
时间: 2024-11-10 15:59:43

FOJ 2206 函数求解的相关文章

FOJ有奖月赛-2015年11月 Problem B 函数求解

Problem B 函数求解 Accept: 171    Submit: 540Time Limit: 1000 mSec    Memory Limit : 32768 KB  Problem Description 给出n,求f(n). Input 第一行一个正整数T,表示数据组数. 接下来T行,每行一个正整数n. T<=20,n<=2015000000. Output 对于每组数据,输出一行f(n). Sample Input 2 1 20150001 Sample Output 20

HDU 3032 Nim or not Nim? (sg函数求解)

Nim or not Nim? Problem Description Nim is a two-player mathematic game of strategy in which players take turns removing objects from distinct heaps. On each turn, a player must remove at least one object, and may remove any number of objects provide

C++ 窗口初级 实践项目1 函数求解

1.用if语句编写选择结构的程序,完成下面的分段函数的求值 (提示:x1(1).x1(2)为常数,变量名可以定为x1和x2.) 设计成的窗口版程序可以如下图(两个常量的值也可以调整): 这是我最终的运行界面: 这是求解的主要代码和插入图形: <span style="font-size:24px;">void CMy2Dlg::OnButton1() { // TODO: Add your control notification handler code here Upd

matlab-fsolve函数求解多元非线性方程

记录一下代码,方便下次套用模板 options=optimset('MaxFunEvals',1e4,'MaxIter',1e4); [x,fval,exitflag] = fsolve(@(x) myfun1(x),[75;1.5],options) function f = myfun1(x) f=tan(x(1)*pi/180) - ( ( 1025*9.8*pi*x(2)/4-980 )/(0.625*4*(2-x(2))*24*24) );%有两个未知数x(1)和x(2),从参数里传进

利用梳状函数求解周期函数傅里叶变换

1.单位冲激函数 1.梳状函数及其傅里叶变换

Python闲谈(二)聊聊最小二乘法以及leastsq函数

1 最小二乘法概述 自从开始做毕设以来,发现自己无时无刻不在接触最小二乘法.从求解线性透视图中的消失点,m元n次函数的拟合,包括后来学到的神经网络,其思想归根结底全都是最小二乘法. 1-1 “多线→一点”视角与“多点→一线”视角 最小二乘法非常简单,我把它分成两种视角描述: (1)已知多条近似交汇于同一个点的直线,想求解出一个近似交点:寻找到一个距离所有直线距离平方和最小的点,该点即最小二乘解: (2)已知多个近似分布于同一直线上的点,想拟合出一个直线方程:设该直线方程为y=kx+b,调整参数k

poj2478--欧拉函数打表

此题中对时间有要求,如直接使用欧拉函数求解,每输入一个n,就得进行循环求出<n的每个数的欧拉函数, 这样会超时, 于是我们可预先将欧拉函数打表, 再进行一个循环加法运算,便可不超时得解. #include<iostream> #define Max 1000001 using namespace std; //欧拉函数打表 long long euler[Max]; void Init(){ euler[1]=1; for(int i=2;i<Max;i++) euler[i]=i

matlab学习笔记之求解线性规划问题和二次型问题

一.线性规划问题 已知目标函数和约束条件均为线性函数,求目标函数的最小值(最优值)问题. 1.求解方式:用linprog函数求解 2.linprog函数使用形式: x=linprog(f,A,b)  x=linprog(f,A,b,Aeq,beq)  x=linprog(f,A,b,Aeq,beq,lb,ub)  x=linprog(f,A,b,Aeq,beq,lb,ub,x0)  x=linprog(f,A,b,Aeq,beq,lb,ub,x0,options)   [x,fval]=linp

matlab std函数 用法及实例

MATLAB常常用到std函数来进行标准差计算,下面我就通过实例介绍一下 matlab std函数怎么用. 1. std函数是用来计算标准偏差的一个函数,由于其有不同的参数,我们就用下面的例子进行介绍: A =      1     2     3      1     1     1 标准差的两种计算公式如下: 2. std(A): std(A)函数求解的是最常见的标准差,此时除以的是N-1. 注意:此函数命令不能对矩阵求整体的标准差,只能按照行或者列进行逐个求解标准差,默认情况下是按照列.