結果
問題 | No.10 +か×か |
ユーザー | ReERishun |
提出日時 | 2020-05-10 03:12:03 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 938 bytes |
コンパイル時間 | 1,318 ms |
コンパイル使用メモリ | 29,440 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 14:09:15 |
合計ジャッジ時間 | 688 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
コンパイルメッセージ
main.c: In function 'main': main.c:37:30: warning: left shift count >= width of type [-Wshift-count-overflow] 37 | while (switcher < (1 << 49)) { | ^~
ソースコード
#include<stdio.h> void numin(int index, int *numBox) { char str; for (int i = 0; i<index; i++) numBox[i] = 0; int cnt = 0; while (cnt < index) { str = getchar(); if (str == '\n') { if (cnt != 0) break; } else if (str < '0' || str > '9') cnt++; else numBox[cnt] = numBox[cnt] * 10 + (int)str - (int)'0'; } } int main() { int number=0; int total =0; int value[50]; // 入力処理 scanf("%d", &number); scanf("%d", &total); numin(number, value); int ans = value[0]; int cnt = 0; unsigned long long switcher = 0; // 計算処理 while (switcher < (1 << 49)) { // 計算 if ((switcher >> cnt) & 1) ans *= value[++cnt]; else ans += value[++cnt]; if (cnt >= number - 1) { if (ans == total) break; ans = value[0]; cnt = 0; switcher++; } } for (int i = 0; i < number - 1; i++) { if((switcher >> i) & 1) printf("*"); else printf("+"); } return 0; }