結果
問題 | No.675 ドットちゃんたち |
ユーザー | Layla |
提出日時 | 2018-06-14 00:30:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,632 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 24,064 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-06-30 14:16:24 |
合計ジャッジ時間 | 3,927 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
13,760 KB |
testcase_01 | AC | 0 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d%d%d", &dot_num, &initial_x, &initial_y); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 20 | scanf("%d", &command[j][0]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~ main.cpp:24:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 24 | scanf("%d", &command[j][1]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> typedef struct dot { int x; int y; int r_num; } Dot; int main() { int dot_num = 0; int initial_x, initial_y; scanf("%d%d%d", &dot_num, &initial_x, &initial_y); Dot dots[dot_num]; int command[dot_num][2]; for (int j = 0; j < dot_num; ++j) { dots[j].x = initial_x; dots[j].y = initial_y; dots[j].r_num = 0; scanf("%d", &command[j][0]); if (command[j][0] == 3) { continue; } scanf("%d", &command[j][1]); } for (int k = 0; k < dot_num; ++k) { for (int i = k; i < dot_num; ++i) { switch (command[i][0]) { case 1: dots[k].x += command[i][1]; break; case 2: dots[k].y += command[i][1]; break; case 3: dots[k].r_num++; } } } for (int k = 0; k < dot_num; ++k) { switch (dots[k].r_num % 4) { case 1: { int temp = dots[k].x; dots[k].x = dots[k].y; dots[k].y = -temp; break; } case 2: { dots[k].x = -dots[k].x; dots[k].y = -dots[k].y; break; } case 3: { int temp = dots[k].x; dots[k].x = -dots[k].y; dots[k].y = temp; break; } } } for (int l = 0; l < dot_num; ++l) { printf("%d %d\n", dots[l].x, dots[l].y); } return 0; }