結果
問題 | No.1798 Financial Quiz |
ユーザー | tails |
提出日時 | 2022-01-03 15:24:04 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 346 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 29,696 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 06:09:23 |
合計ジャッジ時間 | 547 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 0 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.c: In function 'main': main.c:8:9: warning: implicit declaration of function 'read'; did you mean 'rd'? [-Wimplicit-function-declaration] 8 | read(0,buf,sizeof buf); | ^~~~ | rd main.c:15:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 15 | write(1,wp,buf+sizeof buf-wp); | ^~~~~ main.c:16:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 16 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") #define rd(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;} int main(){ char buf[64]; read(0,buf,sizeof buf); char*rp=buf; rd(n); rd(p); unsigned z=n*(100-p)/100; char*wp=buf+sizeof buf; do*--wp=z%10+48;while(z/=10); write(1,wp,buf+sizeof buf-wp); _exit(0); return 0; }