結果
問題 | No.689 E869120 and Constructing Array 3 |
ユーザー | rieaaddlreiuu |
提出日時 | 2022-11-07 10:13:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 1,763 ms |
コンパイル使用メモリ | 165,192 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 18:40:20 |
合計ジャッジ時間 | 4,731 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int K; scanf("%d",&K); int a = 100,b,c = 1,d; b = K % 100; d = K/100 - b; int N = a+b+c+d; printf("%d\n",N); for(int i=0;i<a;i++){ printf("2 "); } for(int i=0;i<b;i++){ printf("3 "); } for(int i=0;i<c;i++){ printf("4 "); } for(int i=0;i<d;i++){ printf("5 "); } }