結果

問題 No.3054 ほぼ直角二等辺三角形
ユーザー akakimidoriakakimidori
提出日時 2019-04-01 22:18:05
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 31,104 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 08:08:10
合計ジャッジ時間 1,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 0 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<stdint.h>
#include<inttypes.h>
#include<string.h>
#include<math.h>

typedef int32_t i32;
typedef int64_t i64;

#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define ABS(a) ((a) > (0) ? (a) : -(a))

void run (void) {
  i32 d;
  scanf ("%" SCNi32, &d);
  if (d == 1) {
    puts("3 4 5");
    return;
  }
  i64 m = 1;
  while (--d) {
    m *= 10;
  }
  i64 x = 1;
  i64 y = 1;
  while (y < m) {
    i64 nx = 3 * x + 4 * y;
    i64 ny = 2 * x + 3 * y;
    x = nx;
    y = ny;
  }
  printf ("%" PRIi64 " %" PRIi64 " %" PRIi64 "\n", x / 2, x / 2 + 1, y);
}

int main (void) {
  run ();
  return 0;
}
0