結果
問題 | No.8043 yukicoderへようこそ! |
ユーザー | pekempey |
提出日時 | 2019-04-01 23:40:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,042 bytes |
コンパイル時間 | 604 ms |
コンパイル使用メモリ | 64,052 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-27 04:58:43 |
合計ジャッジ時間 | 1,037 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 |
ソースコード
#include <iostream> #include <cassert> using namespace std; int N, M; void solve1() { puts("Hello World!"); } void solve2() { printf("%d\n", N*(N+1)/2); } void solve3() { char S[11]; scanf("%s", S); printf("%d %s\n", N+M, S); } void solve4() { for (int i = 1; i <= N; i++) { if (i % 15 == 0) { puts("FizzBuzz"); } else if (i % 3 == 0) { puts("Fizz"); } else if (i % 5 == 0) { puts("Buzz"); } else { printf("%d\n", i); } } } void solve5() { long long ans = 0; while (N--) { long long A; scanf("%lld", &A); ans += A; } printf("%lld\n", ans); } // str // // int // // int int // str // // int // // int // int int int ... // // int // int // ... int main() { if (scanf("%d", &N) == 0) { solve1(); return 0; } if (getchar() == ' ') { scanf("%d", &M); solve3(); return 0; } int c = getchar(); ungetc(c, stdin); if (c == EOF) { if (N>75) { solve2(); } else { solve4(); } return 0; } solve5(); }