結果

問題 No.5017 Tool-assisted Shooting
ユーザー 👑 p-adicp-adic
提出日時 2023-07-17 15:14:13
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 579 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 28,384 KB
実行使用メモリ 32,448 KB
スコア 26,374
平均クエリ数 1.80
最終ジャッジ日時 2023-07-17 15:14:20
合計ジャッジ時間 7,156 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,024 KB
testcase_01 AC 29 ms
23,412 KB
testcase_02 AC 26 ms
23,676 KB
testcase_03 AC 26 ms
23,628 KB
testcase_04 AC 28 ms
24,060 KB
testcase_05 AC 27 ms
23,640 KB
testcase_06 AC 26 ms
23,652 KB
testcase_07 AC 28 ms
24,408 KB
testcase_08 AC 25 ms
23,388 KB
testcase_09 AC 27 ms
23,640 KB
testcase_10 AC 28 ms
23,652 KB
testcase_11 AC 26 ms
23,376 KB
testcase_12 AC 28 ms
23,436 KB
testcase_13 AC 26 ms
24,336 KB
testcase_14 AC 26 ms
24,024 KB
testcase_15 AC 26 ms
24,312 KB
testcase_16 AC 25 ms
23,604 KB
testcase_17 AC 30 ms
23,436 KB
testcase_18 AC 26 ms
24,060 KB
testcase_19 AC 27 ms
23,640 KB
testcase_20 AC 26 ms
23,844 KB
testcase_21 AC 27 ms
24,324 KB
testcase_22 AC 26 ms
23,400 KB
testcase_23 AC 24 ms
23,532 KB
testcase_24 AC 27 ms
24,276 KB
testcase_25 AC 26 ms
24,348 KB
testcase_26 AC 27 ms
23,532 KB
testcase_27 AC 30 ms
24,348 KB
testcase_28 AC 26 ms
24,024 KB
testcase_29 AC 26 ms
23,412 KB
testcase_30 AC 26 ms
24,360 KB
testcase_31 AC 25 ms
23,832 KB
testcase_32 AC 26 ms
24,060 KB
testcase_33 AC 26 ms
24,348 KB
testcase_34 AC 30 ms
24,384 KB
testcase_35 AC 26 ms
24,048 KB
testcase_36 AC 28 ms
24,264 KB
testcase_37 AC 27 ms
23,628 KB
testcase_38 AC 27 ms
23,376 KB
testcase_39 AC 30 ms
24,360 KB
testcase_40 AC 26 ms
23,640 KB
testcase_41 AC 25 ms
24,024 KB
testcase_42 AC 28 ms
23,424 KB
testcase_43 AC 27 ms
24,336 KB
testcase_44 AC 25 ms
23,712 KB
testcase_45 TLE -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
testcase_94 -- -
testcase_95 -- -
testcase_96 -- -
testcase_97 -- -
testcase_98 -- -
testcase_99 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:2:1: 警告: 戻り値の型をデフォルトの ‘int’ にします [-Wimplicit-int]
    2 | main()
      | ^~~~

ソースコード

diff #

#include <stdio.h>
main()
{
  printf("S\nR\nL\n");
  fflush(stdout);
  int n = 0;
  while( n == 0 ){
    scanf("%d",&n);
  }
  int h,p,x;
  scanf("%d %d %d",&h,&p,&x);
  if( x == 12 ){
    printf("R");
    for( int i = 0 ; i < 54 ; i++ ){
      printf("S");
    }
    printf("L");
  } else if( x < 12 ){
    for( int i = 11 - x ; i < 55 ; i++ ){
      printf("S");
    }
    for( int i = x ; i < 12 ; i++ ){
      printf("L");
    }
  } else {
    for( int i = x - 13 ; i < 55 ; i++ ){
      printf("S");
    }
    for( int i = x ; i > 12 ; i-- ){
      printf("R");
    }
  }
}
0