結果

問題 No.434 占い
ユーザー olpheolphe
提出日時 2016-10-14 23:06:26
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 527 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 22,272 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-22 09:42:09
合計ジャッジ時間 12,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
6,912 KB
testcase_02 AC 1 ms
8,612 KB
testcase_03 AC 1 ms
7,040 KB
testcase_04 AC 1 ms
8,612 KB
testcase_05 AC 0 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 45 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 44 ms
5,248 KB
testcase_14 AC 5 ms
5,248 KB
testcase_15 TLE -
testcase_16 AC 435 ms
5,248 KB
testcase_17 AC 46 ms
5,248 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 16 ms
5,248 KB
testcase_21 TLE -
testcase_22 AC 437 ms
5,248 KB
testcase_23 AC 0 ms
5,248 KB
testcase_24 AC 436 ms
5,248 KB
testcase_25 TLE -
testcase_26 AC 684 ms
5,248 KB
testcase_27 AC 18 ms
5,248 KB
testcase_28 AC 14 ms
5,248 KB
testcase_29 AC 4 ms
5,248 KB
testcase_30 AC 13 ms
7,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:42: warning: NULL used in arithmetic [-Wpointer-arith]
   14 |                         if (letter[i] == NULL) {
      |                                          ^~~~
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d", &t);
      |         ~~~~~^~~~~~~~~~
main.cpp:12:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |                 scanf("%s", letter);
      |                 ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include "stdio.h"

int t;
char letter[100002];
int num[100000];
int ans[100000];
int dis;

int main() {
	scanf("%d", &t); 
	for (int i = 0; i < t; i++) {
		scanf("%s", letter);
		for (int i = 0;i<100002; i++) {
			if (letter[i] == NULL) {
				dis = i;
				break;
			}
			num[i] = letter[i] - '0';
		}
		while (dis > 1) {
			for (int j = 0; j < dis-1; j++) {
				num[j] = num[j] + num[j + 1];
				if (num[j] > 9)num[j] -= 9;
			}
			dis--;
		}
		ans[i] = num[0];
	}
	for (int i = 0; i < t; i++) {
		printf("%d\n", ans[i]);
	}
}
0