結果
問題 | No.1034 テスターのふっぴーさん |
ユーザー | shimomotsuki |
提出日時 | 2020-04-30 20:41:40 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,850 bytes |
コンパイル時間 | 468 ms |
コンパイル使用メモリ | 31,104 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 22:00:02 |
合計ジャッジ時間 | 3,291 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
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 | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
ソースコード
#include<stdio.h> int main(){ int q,n,i,j; //入力用 int pos_x = 0,pos_y = 0; //位置座標 int t = 0,mode = 0,flg = 1,cnt = 0,r,f; //制御用変数 scanf("%d%d%d%d",&q,&n,&i,&j); //条件入力 signed int map[n][n]; for(r= 0;r < n;r++){ for(f = 0;f < n;f++){ map[r][f] = -1; } } map[0][0] = 0; for(r = 0;r < q;r++){ flg = 1; while(flg){ switch(mode){ case 0: if(map[pos_x][pos_y + 1] == -1 && (pos_y + 1) < n){ map[pos_x][++pos_y] = ++t; cnt++; }else{ mode++; } break; case 1: if(map[pos_x + 1][pos_y] == -1 && (pos_x + 1) < n){ map[++pos_x][pos_y] = ++t; cnt++; }else{ mode++; } break; case 2: if(map[pos_x][pos_y - 1] == -1 && (pos_y - 1) > 0){ map[pos_x][--pos_y] = ++t; cnt++; }else{ mode++; } break; case 3: if(map[pos_x - 1][pos_y] == -1 && (pos_x - 1) > 0){ map[--pos_x][pos_y] = ++t; cnt++; }else{ mode++; } break; case 4: if (cnt == 0) flg = 0; mode = 0; cnt = 0; break; } } printf("%d\n",map[i][j]); } return 0; }