#15223: C++ AC (目前c++最短的程式)


ufve0704 (爬 我爬 我爬爬爬 有排行榜這種東西就是要爬 爬過我上面的那...)

學校 : 臺北市私立延平高級中學
編號 : 83268
來源 : [203.72.178.1]
最後登入時間 :
2023-10-30 13:02:50
d073. 分組報告 -- 板橋高中教學題 | From: [203.72.178.252] | 發表日期 : 2018-09-20 17:43

#include <iostream>
using namespace std;
int main(int argc, char** argv){
int a,b;
cin>>a;
b=a%3;
a=a/3+1-(b==0);
cout<<a;
}

 
#16696: Re:C++ AC (目前c++最短的程式)


kagerou (一ノ瀬帆波)

學校 : 高雄市立中山高級中學
編號 : 69913
來源 : [1.160.56.134]
最後登入時間 :
2019-03-07 22:23:36
d073. 分組報告 -- 板橋高中教學題 | From: [1.172.189.225] | 發表日期 : 2019-01-30 17:47

#include
using namespace std;
int main(int argc, char** argv){
int a,b;
cin>>a;
b=a%3;
a=a/3+1-(b==0);
cout<<a;
}



#include <iostream>

using namespace std;

 

int main() {

    int n;

    cin >> n;

    cout << (n - 1) / 3 + 1;

}

 
#20627: Re:C++ AC (目前c++最短的程式)


1010132@ms2.yhes.tyc.edu.tw (周宇凡)

學校 : 臺北市立建國高級中學
編號 : 101577
來源 : [220.137.143.136]
最後登入時間 :
2021-06-22 15:05:27
d073. 分組報告 -- 板橋高中教學題 | From: [111.251.180.31] | 發表日期 : 2020-02-13 15:10

#include
using namespace std;
int main(int argc, char** argv){
int a,b;
cin>>a;
b=a%3;
a=a/3+1-(b==0);
cout<<a;
}



#include

using namespace std;

 

int main() {

    int n;

    cin >> n;

    cout << (n - 1) / 3 + 1;

}

#include<iostream>

#include<iomanip>

using namespace std;

int main(){

double a;

cin >> a;

cout << fixed << setprecision(0) << a / 3 + 0.4;

}



 
ZeroJudge Forum