結果
問題 | No.304 鍵(1) |
ユーザー | tsuishi |
提出日時 | 2021-02-12 14:46:27 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 63 ms / 2,000 ms |
コード長 | 1,491 bytes |
コンパイル時間 | 99 ms |
コンパイル使用メモリ | 28,160 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 691.83 |
最終ジャッジ日時 | 2024-07-17 02:57:01 |
合計ジャッジ時間 | 1,118 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
24,836 KB |
testcase_01 | AC | 56 ms
24,964 KB |
testcase_02 | AC | 23 ms
25,220 KB |
testcase_03 | AC | 57 ms
24,964 KB |
testcase_04 | AC | 42 ms
25,220 KB |
testcase_05 | AC | 56 ms
24,940 KB |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> // Yukicoder №123 カードシャッフル // https://yukicoder.me/problems/no/123 // *********************** // for debug #define DEBUG #define NOP do{}while(0) #ifdef DEBUG #define TRACE(...) do{printf(__VA_ARGS__);fflush(stdout);}while(0) #define TRACECR do{printf("\n");fflush(stdout);}while(0) #else #define TRACE(...) NOP #define TRACECR NOP #endif #define PRINCR printf("\n") #define NOCR(strig) do{char *p;p=strchr(strig,'\n');if(p)*p='\0';}while(0) // The out-of-date function #define asctime(...) asctime_s(...) #define ctime(...) ctime_s(...) #define strlen(a) mystr_len(a) // for stdio #define GETLINE INPUT #define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0) #define REP(a,b) for(int a=0;a<(int)(b);++a) #define lolong long long #define INPBUF (250+2) static char *GETWORD(char* str) {char c;char *cp;cp=&str[0];c=fgetc(stdin);while( c != EOF ){if((c==' ')||( c=='\n')) break;*cp++=c;c=fgetc(stdin);}*cp='\0';return &str[0];} #define GETINTS(a,b) {char s[257];int *ap=a;REP(i,b){GETWORD(s);sscanf(s,"%d", ap);ap++;}} #define GETLONGS(a,b) {char s[257];long *ap=a;REP(i,b){GETWORD(s);sscanf(s,"%ld", ap);ap++;}} // *********************** // *********************** // 外部変数 // *********************** int main() { char str[51]; int i = 999; str[0] = 'l'; while(str[0] != 'u' ) { printf("%03d\n",i--); fflush(stdout); GETLINE(str); } return 0; }