結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | bal4u |
提出日時 | 2019-08-19 13:53:39 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 15 ms / 2,000 ms |
コード長 | 1,079 bytes |
コンパイル時間 | 1,328 ms |
コンパイル使用メモリ | 30,336 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-04 06:03:39 |
合計ジャッジ時間 | 2,415 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,824 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 9 ms
6,820 KB |
testcase_07 | AC | 15 ms
6,820 KB |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
コンパイルメッセージ
main.c: In function 'outdbl': main.c:9:15: warning: implicit declaration of function 'putchar_unlocked' [-Wimplicit-function-declaration] 9 | #define pc(c) putchar_unlocked(c) | ^~~~~~~~~~~~~~~~ main.c:21:23: note: in expansion of macro 'pc' 21 | if (a == 0) { pc('0'), pc('\n'); return; } | ^~ main.c: In function 'main': main.c:8:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 8 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:44:21: note: in expansion of macro 'gc' 44 | c = gc(); | ^~
ソースコード
// yukicoder: No.667 Mice's Luck(ネズミ達の運) // bal4u 2019.8.19 #include <stdio.h> //// 入出力関係 #if 1 #define gc() getchar_unlocked() #define pc(c) putchar_unlocked(c) #else #define gc() getchar() #define pc(c) putchar(c) #endif #define FLEN 12 // 小数点以下12桁 void outdbl(int a, int b) { int i, n; char buf[30]; double y; if (a == 0) { pc('0'), pc('\n'); return; } n = a/b; if (n == 0) pc('0'); else { i = 0; while (n) buf[i++] = n % 10 + '0', n /= 10; while (i--) pc(buf[i]); } a %= b; if (a) { pc('.'), i = FLEN; while (a && i--) a *= 10, pc('0'+ a/b), a %= b; } pc('\n'); } void outs(char *s) { while (*s) pc(*s++); pc('\n'); } char S[100005]; int main() { int i, c, n, m, ok; ok = 0, n = 0; for (n = 0; ; n++) { c = gc(); if (c == 'o') S[n] = 1, ok++; else if (c < ' ') break; } m = n; for (i = 0; i < n; i++) { outdbl(100*ok, m); m--; if (S[i]) ok--; if (ok == 0) goto NG; else if (ok == m) goto OK; } return 0; NG: while (++i < n) outs( "0"); return 0; OK: while (++i < n) outs("100"); return 0; }